Skip to content
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = 3.9.7
version = 3.9.10
runner.dialect = scala3
runner.dialectOverride.allowSignificantIndentation = false

Expand Down
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ lazy val `forms4s-core` = crossProject(JSPlatform, JVMPlatform)
.settings(
name := "forms4s-core",
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.14",
"io.circe" %%% "circe-core" % "0.14.15",
"org.scalatest" %%% "scalatest" % "3.2.19" % "test",
),
)
Expand All @@ -38,10 +38,10 @@ lazy val `forms4s-jsonschema` = crossProject(JSPlatform, JVMPlatform)
.settings(
name := "forms4s-jsonschema",
libraryDependencies ++= Seq(
"com.softwaremill.sttp.apispec" %%% "apispec-model" % "0.11.9",
"com.softwaremill.sttp.apispec" %%% "apispec-model" % "0.11.10",
"com.softwaremill.sttp.apispec" %%% "openapi-circe" % "0.11.10",
"io.circe" %%% "circe-parser" % "0.14.14",
"com.softwaremill.sttp.tapir" %%% "tapir-apispec-docs" % "1.11.34" % "test",
"io.circe" %%% "circe-parser" % "0.14.15",
"com.softwaremill.sttp.tapir" %%% "tapir-apispec-docs" % "1.11.50" % "test",
),
)
.settings(commonSettings)
Expand All @@ -67,7 +67,7 @@ lazy val `forms4s-circe` = crossProject(JSPlatform, JVMPlatform)
.settings(
name := "forms4s-circe",
libraryDependencies ++= Seq(
"io.circe" %%% "circe-core" % "0.14.14",
"io.circe" %%% "circe-core" % "0.14.15",
),
)
.settings(commonSettings)
Expand All @@ -80,8 +80,8 @@ lazy val `forms4s-examples` = crossProject(JSPlatform, JVMPlatform)
.settings(
name := "forms4s-examples",
libraryDependencies ++= Seq(
"com.softwaremill.sttp.tapir" %%% "tapir-apispec-docs" % "1.11.34",
"io.circe" %%% "circe-parser" % "0.14.14",
"com.softwaremill.sttp.tapir" %%% "tapir-apispec-docs" % "1.11.50",
"io.circe" %%% "circe-parser" % "0.14.15",
"com.softwaremill.sttp.apispec" %%% "openapi-circe" % "0.11.10",
),
)
Expand All @@ -97,7 +97,7 @@ lazy val `forms4s-examples` = crossProject(JSPlatform, JVMPlatform)

lazy val commonSettings = Seq(
organization := "org.business4s",
scalaVersion := "3.7.1",
scalaVersion := "3.7.4",
Test / tpolecatExcludeOptions += ScalacOptions.warnNonUnitStatement,
libraryDependencies ++= Seq(
"org.scalatest" %% "scalatest" % "3.2.19" % "test",
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 = 1.11.2
sbt.version = 1.11.7
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.19.0")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.20.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.1")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.6")
addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.1.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.11.2")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.3")