Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
rename common to core
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Sep 18, 2020
1 parent e4f0944 commit 22090cc
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ allprojects {

if(project.name.endsWith("fake")) {
dependencies {
implementation project(":http4k-connect-common")
testImplementation project(path: ":http4k-connect-common", configuration: 'testArtifacts')
implementation project(":http4k-connect-core")
testImplementation project(path: ":http4k-connect-core", configuration: 'testArtifacts')
}
}

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
includeWithName("http4k-connect-common", "common")
includeWithName("http4k-connect-core", "core")
includeWithName("http4k-connect-bom", "bom")
includeWithName("http4k-connect-storage-redis", "storage/redis")

Expand Down
2 changes: 1 addition & 1 deletion storage/redis/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
}

dependencies {
"implementation"(project(":http4k-connect-common"))
"implementation"(project(":http4k-connect-core"))
"implementation"("io.lettuce:lettuce-core:5.3.4.RELEASE")
"compileOnly"("org.http4k:http4k-format-jackson")
}

0 comments on commit 22090cc

Please sign in to comment.