Skip to content

Commit

Permalink
fix(isthmus): correct SLF4J dependency (#268)
Browse files Browse the repository at this point in the history
* Remove concrete slf4j-jdk14 provider dependency from isthmus.
* Add concrete slf4j-jdk14 provider dependency to isthmus-cli.
  • Loading branch information
bestbeforetoday authored Jun 10, 2024
1 parent 6ac4688 commit 3134504
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 2 additions & 0 deletions isthmus-cli/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ var IMMUTABLES_VERSION = properties.get("immutables.version")
var JACKSON_VERSION = properties.get("jackson.version")
var JUNIT_VERSION = properties.get("junit.version")
var PROTOBUF_VERSION = properties.get("protobuf.version")
var SLF4J_VERSION = properties.get("slf4j.version")

dependencies {
implementation(project(":core"))
Expand All @@ -39,6 +40,7 @@ dependencies {
testImplementation("org.apache.calcite:calcite-plus:${CALCITE_VERSION}")
annotationProcessor("com.github.bsideup.jabel:jabel-javac-plugin:0.4.2")
compileOnly("com.github.bsideup.jabel:jabel-javac-plugin:0.4.2")
runtimeOnly("org.slf4j:slf4j-jdk14:${SLF4J_VERSION}")
}

var initializeAtBuildTime =
Expand Down
1 change: 0 additions & 1 deletion isthmus/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ dependencies {
implementation("com.github.ben-manes.caffeine:caffeine:3.0.4")
implementation("org.immutables:value-annotations:${IMMUTABLES_VERSION}")
implementation("org.slf4j:slf4j-api:${SLF4J_VERSION}")
runtimeOnly("org.slf4j:slf4j-jdk14:${SLF4J_VERSION}")
annotationProcessor("org.immutables:value:${IMMUTABLES_VERSION}")
testImplementation("org.apache.calcite:calcite-plus:${CALCITE_VERSION}")
annotationProcessor("com.github.bsideup.jabel:jabel-javac-plugin:0.4.2")
Expand Down

0 comments on commit 3134504

Please sign in to comment.