Skip to content

Commit

Permalink
build: use compileAndTestOnly configuration in logging-configure
Browse files Browse the repository at this point in the history
  • Loading branch information
testersen committed Apr 10, 2024
1 parent 1b16630 commit 216b545
Showing 1 changed file with 8 additions and 17 deletions.
25 changes: 8 additions & 17 deletions projects/logging/logging-configure/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,19 +1,10 @@
dependencies {
compileOnly("ch.qos.logback:logback-classic")
compileOnly("com.fasterxml.jackson.core:jackson-databind")
compileOnly("com.fasterxml.jackson.core:jackson-core")
compileOnly("com.fasterxml.jackson.core:jackson-annotations")
compileOnly("com.fasterxml.jackson.module:jackson-module-kotlin")
compileOnly(libs.hocon)
compileOnly(project(":projects:logging:logging-model"))
compileOnly(project(":projects:util:util-homedir"))

testImplementation("ch.qos.logback:logback-classic")
testImplementation("com.fasterxml.jackson.core:jackson-databind")
testImplementation("com.fasterxml.jackson.core:jackson-core")
testImplementation("com.fasterxml.jackson.core:jackson-annotations")
testImplementation("com.fasterxml.jackson.module:jackson-module-kotlin")
testImplementation(libs.hocon)
testImplementation(project(":projects:logging:logging-model"))
testImplementation(project(":projects:util:util-homedir"))
compileAndTestOnly("ch.qos.logback:logback-classic")
compileAndTestOnly("com.fasterxml.jackson.core:jackson-databind")
compileAndTestOnly("com.fasterxml.jackson.core:jackson-core")
compileAndTestOnly("com.fasterxml.jackson.core:jackson-annotations")
compileAndTestOnly("com.fasterxml.jackson.module:jackson-module-kotlin")
compileAndTestOnly(libs.hocon)
compileAndTestOnly(project(":projects:logging:logging-model"))
compileAndTestOnly(project(":projects:util:util-homedir"))
}

0 comments on commit 216b545

Please sign in to comment.