Skip to content

Commit

Permalink
fix: use 2.0.6 slf4j version in 'suites'
Browse files Browse the repository at this point in the history
This way, 2.0.6 is used everywhere. This version contains a proper
'module-info.class' and thus does not require patching.

Signed-off-by: Jendrik Johannes <[email protected]>
  • Loading branch information
jjohannes committed Oct 7, 2024
1 parent 99ef745 commit 0dec7a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ extraJavaModuleInfo {
"com.github.docker-java:docker-java-transport-zerodep",
"com.github.dockerjava.transport.zerodep"
)
module("org.slf4j:slf4j-api", "org.slf4j") { patchRealModule() }
module("io.github.cdimascio:java-dotenv", "io.github.cdimascio")
module("com.google.protobuf:protobuf-java-util", "com.google.protobuf.util")
module("com.squareup:javapoet", "com.squareup.javapoet") {
Expand Down
3 changes: 3 additions & 0 deletions suites/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ mainModuleInfo {
runtimeOnly("org.junit.jupiter.engine")
}

// workaround until https://github.com/hashgraph/hedera-block-node/pull/216 is integrated
dependencies.constraints { implementation("org.slf4j:slf4j-api:2.0.6") }

val updateDockerEnv =
tasks.register<Exec>("updateDockerEnv") {
description =
Expand Down

0 comments on commit 0dec7a0

Please sign in to comment.