Skip to content

Commit

Permalink
Move project into cloudkitclient prefixed folder (#49)
Browse files Browse the repository at this point in the history
Co-authored-by: hfhbd <hfhbd@users.noreply.github.com>
  • Loading branch information
hfhbd and hfhbd authored May 16, 2021
1 parent 7078a23 commit c4902f5
Show file tree
Hide file tree
Showing 47 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ kotlin {
sourceSets {
commonMain {
dependencies {
api(project(":core"))
api(project(":cloudkitclient-core"))
}
}
commonTest {
Expand Down
4 changes: 2 additions & 2 deletions integrationTest/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@ kotlin {
sourceSets {
commonMain {
dependencies {
implementation(project(":core"))
implementation(project(":cloudkitclient-core"))
}
}
commonTest {
dependencies {
implementation(project(":testing"))
implementation(project(":cloudkitclient-testing"))
implementation(kotlin("test"))
}
}
Expand Down
6 changes: 3 additions & 3 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
rootProject.name = "cloudkit-client"
rootProject.name = "cloudkitclient"

include(":core")
include(":testing")
include(":cloudkitclient-core")
include(":cloudkitclient-testing")

val keyID: String? = System.getProperty("keyID")
if (keyID != null) {
Expand Down

0 comments on commit c4902f5

Please sign in to comment.