Skip to content

Commit b00a661

Browse files
committed
bumped testcontainers
1 parent 3e755be commit b00a661

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

build.sbt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ inScope(Global)(
3434
name := "consensus-client"
3535
maintainer := "Units Network Team"
3636

37+
//dependencyOverrides ++= Seq(
38+
// "org.slf4j" % "slf4j-api" % "1.7.30"
39+
//)
40+
3741
libraryDependencies ++= {
3842
val node = "1.6.1"
3943
val sttpVersion = "3.11.0"
@@ -43,7 +47,7 @@ libraryDependencies ++= {
4347
"com.softwaremill.sttp.client3" %% "core" % sttpVersion,
4448
"com.softwaremill.sttp.client3" %% "play-json" % sttpVersion,
4549
"com.github.jwt-scala" %% "jwt-play-json" % "11.0.3",
46-
"org.web3j" % "core" % "4.9.8"
50+
("org.web3j" % "core" % "4.9.8").exclude("org.slf4j", "slf4j-api")
4751
)
4852
}
4953

consensus-client-it/build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import scala.util.control.NonFatal
1515
description := "Consensus client integration tests"
1616

1717
libraryDependencies ++= Seq(
18-
"org.testcontainers" % "testcontainers" % "2.0.1",
18+
"org.testcontainers" % "testcontainers" % "2.0.3",
1919
"org.web3j" % "core" % "4.9.8"
2020
).map(_ % Test)
2121

0 commit comments

Comments
 (0)