Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ lazy val `workflows4s-core` = (project in file("workflows4s-core"))
"org.typelevel" %% "cats-effect" % "3.7.0" % Test,
"dev.zio" %% "zio" % "2.1.26" % Test,
"dev.zio" %% "zio-interop-cats" % "23.1.0.13" % Test,
"ch.qos.logback" % "logback-classic" % "1.6.1" % Test,
"ch.qos.logback" % "logback-classic" % "1.6.2" % Test,
),
Test / parallelExecution := false,
)
Expand Down Expand Up @@ -164,7 +164,7 @@ lazy val `workflows4s-web-ui` = (project in file("workflows4s-web-ui"))
"io.circe" %% "circe-core" % circeVersion,
"io.circe" %% "circe-generic" % circeVersion,
"io.circe" %% "circe-parser" % circeVersion,
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client4" % "1.13.30",
"com.softwaremill.sttp.tapir" %% "tapir-sttp-client4" % "1.13.31",
"com.softwaremill.sttp.client4" %% "cats" % "4.0.26",
"org.business4s" %% "forms4s-jsonschema" % "0.2.0",
"org.business4s" %% "forms4s-tyrian" % "0.2.0",
Expand Down Expand Up @@ -222,7 +222,7 @@ lazy val `workflows4s-example` = (project in file("workflows4s-example"))
"com.h2database" % "h2" % "2.4.240",
"io.r2dbc" % "r2dbc-h2" % "1.1.0.RELEASE",
"com.github.pjfanning" %% "pekko-http-circe" % "3.10.1",
"ch.qos.logback" % "logback-classic" % "1.6.1",
"ch.qos.logback" % "logback-classic" % "1.6.2",
"dev.zio" %% "zio" % "2.1.26",
"dev.zio" %% "zio-interop-cats" % "23.1.0.3",
"org.scalamock" %% "scalamock" % "7.5.5" % Test,
Expand All @@ -231,8 +231,8 @@ lazy val `workflows4s-example` = (project in file("workflows4s-example"))
"com.dimafeng" %% "testcontainers-scala-postgresql" % testcontainersScalaVersion % Test,
"org.postgresql" % "postgresql" % "42.7.13" % Test,
"org.xerial" % "sqlite-jdbc" % "3.53.2.1" % Test,
"org.seleniumhq.selenium" % "selenium-java" % "4.46.0" % Test,
"org.seleniumhq.selenium" % "selenium-chrome-driver" % "4.46.0" % Test,
"org.seleniumhq.selenium" % "selenium-java" % "4.47.0" % Test,
"org.seleniumhq.selenium" % "selenium-chrome-driver" % "4.47.0" % Test,
),
Test / parallelExecution := false, // otherwise akka clusters clash
publish / skip := true,
Expand Down Expand Up @@ -270,7 +270,7 @@ lazy val commonSettings = Seq(
scalacOptions ++= Seq("-no-indent", "-Xmax-inlines", "64", "-explain-cyclic", "-Ydebug-cyclic"),
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.20" % Test,
"ch.qos.logback" % "logback-classic" % "1.6.1" % Test,
"ch.qos.logback" % "logback-classic" % "1.6.2" % Test,
),
// scalafix settings
semanticdbEnabled := true, // enable SemanticDB
Expand All @@ -292,7 +292,7 @@ lazy val commonSettings = Seq(
lazy val pekkoVersion = "1.6.0"
lazy val pekkoHttpVersion = "1.4.0"
lazy val testcontainersScalaVersion = "0.44.1"
lazy val tapirVersion = "1.13.30"
lazy val tapirVersion = "1.13.31"
lazy val circeVersion = "0.14.16"

addCommandAlias("prePR", List("compile", "Test / compile", "test", "scalafmtCheckAll").mkString(";", ";", ""))
Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=2.0.5
sbt.version=2.0.6
Loading