Skip to content

Commit

Permalink
Fix dependencies of non-core modules on night-config core, close #173
Browse files Browse the repository at this point in the history
  • Loading branch information
TheElectronWill committed May 13, 2024
1 parent f235417 commit d8664e2
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion hocon/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ multiRelease {
}

dependencies {
implementation(project(":core"))
api(project(":core"))
implementation(libs.typesafeConfig)

testImplementation(project(":test-shared"))
Expand Down
2 changes: 1 addition & 1 deletion json/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ multiRelease {
}

dependencies {
implementation(project(":core"))
api(project(":core"))
testImplementation(project(":test-shared"))
}
2 changes: 1 addition & 1 deletion test-shared/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ repositories {
}

dependencies {
// implementation(project(":core"))
// api(project(":core"))
}

java {
Expand Down
2 changes: 1 addition & 1 deletion toml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ multiRelease {
}

dependencies {
implementation(project(":core"))
api(project(":core"))
testImplementation(project(":test-shared"))
}
2 changes: 1 addition & 1 deletion yaml/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ multiRelease {
}

dependencies {
implementation(project(":core"))
api(project(":core"))
implementation(libs.snakeYaml)

testImplementation(project(":test-shared"))
Expand Down

0 comments on commit d8664e2

Please sign in to comment.