Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jivanic-demystdata committed Oct 8, 2024
1 parent b958b4e commit 27ca74a
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ ThisBuild / publishTo := {
}
ThisBuild / publish / skip := true

val testcontainersVersion = "0.40.12"
Global / onChangedBuildSource := ReloadOnSourceChanges

val testcontainersVersion = "0.41.4"

lazy val root = project
.in(file("."))
Expand All @@ -45,18 +47,18 @@ lazy val magnum = project
Test / fork := true,
publish / skip := false,
libraryDependencies ++= Seq(
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.scalameta" %% "munit" % "1.0.2" % Test,
"com.dimafeng" %% "testcontainers-scala-munit" % testcontainersVersion % Test,
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersVersion % Test,
"org.postgresql" % "postgresql" % "42.6.0" % Test,
"org.postgresql" % "postgresql" % "42.7.4" % Test,
"com.dimafeng" %% "testcontainers-scala-mysql" % testcontainersVersion % Test,
"mysql" % "mysql-connector-java" % "8.0.32" % Test,
"com.h2database" % "h2" % "2.1.214" % Test,
"mysql" % "mysql-connector-java" % "8.0.33" % Test,
"com.h2database" % "h2" % "2.3.232" % Test,
"com.dimafeng" %% "testcontainers-scala-oracle-xe" % testcontainersVersion % Test,
"com.oracle.database.jdbc" % "ojdbc11" % "21.9.0.0" % Test,
"com.oracle.database.jdbc" % "ojdbc11" % "23.5.0.24.07" % Test,
"com.dimafeng" %% "testcontainers-scala-clickhouse" % testcontainersVersion % Test,
"com.clickhouse" % "clickhouse-jdbc" % "0.4.1" % Test classifier "http",
"org.xerial" % "sqlite-jdbc" % "3.41.0.0" % Test
"com.clickhouse" % "clickhouse-jdbc" % "0.6.0" % Test classifier "http",
"org.xerial" % "sqlite-jdbc" % "3.46.1.3" % Test
)
)

Expand All @@ -67,8 +69,8 @@ lazy val magnumPg = project
Test / fork := true,
publish / skip := false,
libraryDependencies ++= Seq(
"org.postgresql" % "postgresql" % "42.6.0" % "provided",
"org.scalameta" %% "munit" % "0.7.29" % Test,
"org.postgresql" % "postgresql" % "42.7.4" % "provided",
"org.scalameta" %% "munit" % "1.0.2" % Test,
"com.dimafeng" %% "testcontainers-scala-munit" % testcontainersVersion % Test,
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersVersion % Test
)
Expand Down

0 comments on commit 27ca74a

Please sign in to comment.