Skip to content

Commit

Permalink
build(core): Remove 'core', since it has entirely been extracted into…
Browse files Browse the repository at this point in the history
… other modules
  • Loading branch information
CLOVIS-AI committed Jun 25, 2023
1 parent 6b0aad2 commit 4b6aa8d
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 64 deletions.
4 changes: 3 additions & 1 deletion backend/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ plugins {
}

dependencies {
implementation(projects.core)
implementation(projects.core.coreData)
implementation(projects.core.coreUsers)
implementation(projects.core.coreDomain)
implementation(projects.fake)
implementation(projects.mongo)
implementation(projects.remoteServer)
Expand Down
58 changes: 0 additions & 58 deletions core/build.gradle.kts

This file was deleted.

4 changes: 3 additions & 1 deletion fake/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api(projects.core)
api(projects.core.coreData)
api(projects.core.coreUsers)
api(projects.core.coreDomain)

implementation("opensavvy.pedestal:logger:_")
}
Expand Down
4 changes: 3 additions & 1 deletion mongo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@ plugins {
}

dependencies {
api(projects.core)
api(projects.core.coreData)
api(projects.core.coreUsers)
api(projects.core.coreDomain)

api(KotlinX.coroutines.core)
implementation("org.litote.kmongo:kmongo-coroutine-serialization:_")
Expand Down
4 changes: 3 additions & 1 deletion remote-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ kotlin {
sourceSets {
val commonMain by getting {
dependencies {
api(projects.core)
api(projects.core.coreData)
api(projects.core.coreUsers)
api(projects.core.coreDomain)

api("opensavvy.pedestal:spine:_")
api(KotlinX.serialization.core)
Expand Down
1 change: 0 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")

include(
"backend",
"core",

"core:core-data",
"core:core-users",
Expand Down
4 changes: 3 additions & 1 deletion test/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,9 @@ kotlin {

val commonMain by getting {
dependencies {
api(projects.core)
api(projects.core.coreData)
api(projects.core.coreUsers)
api(projects.core.coreDomain)
api(projects.testStructure)
}
}
Expand Down

0 comments on commit 4b6aa8d

Please sign in to comment.