Skip to content

Commit e151624

Browse files
committed
Update logback
1 parent 2b8356b commit e151624

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.sbt

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,15 @@ lazy val core = (project in file("core")).settings(
5656
"org.testcontainers" % "testcontainers-postgresql" % "2.0.1" % "test",
5757
"org.postgresql" % "postgresql" % postgresqlVersion % "test",
5858
mysqlConnectorJ,
59-
"ch.qos.logback" % "logback-classic" % "1.2.+" % "test"
6059
)
6160
},
61+
libraryDependencies ++= {
62+
if (scala.util.Properties.isJavaAtLeast("11")) {
63+
Seq("ch.qos.logback" % "logback-classic" % "1.5.19" % "test")
64+
} else {
65+
Nil
66+
}
67+
},
6268
libraryDependencies ++= Seq(
6369
"org.scalatest" %% "scalatest-flatspec" % "3.2.19" % "test",
6470
"org.scalatest" %% "scalatest-shouldmatchers" % "3.2.19" % "test",

0 commit comments

Comments
 (0)