Skip to content
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ lazy val lib = project
.settings(
libraryDependencies ++= Seq(
playTest % Test,
"io.flow" %% "lib-util" % "0.2.75",
"io.flow" %% "lib-util" % "0.2.76",
"org.scalatestplus.play" %% "scalatestplus-play" % "5.1.0" % Test,
),
)
Expand All @@ -61,13 +61,13 @@ lazy val api = project
ws,
"org.projectlombok" % "lombok" % "1.18.42" % Provided,
"com.sendgrid" % "sendgrid-java" % "4.10.3",
"io.flow" %% "lib-play-play29" % "0.8.71",
"io.flow" %% "lib-event-sync-play29" % "0.7.35",
"io.flow" %% "lib-postgresql-play29" % "0.3.36",
"io.flow" %% "lib-postgresql-play-play29" % "0.6.55" % Runtime, // Module
"io.flow" %% "lib-log-play29" % "0.2.73",
"io.flow" %% "lib-usage-play29" % "0.3.30",
"io.flow" %% "lib-test-utils-play29" % "0.2.98" % Test,
"io.flow" %% "lib-play-play29" % "0.8.74",
"io.flow" %% "lib-event-sync-play29" % "0.7.37",
"io.flow" %% "lib-postgresql-play29" % "0.3.39",
"io.flow" %% "lib-postgresql-play-play29" % "0.6.58" % Runtime, // Module
"io.flow" %% "lib-log-play29" % "0.2.75",
"io.flow" %% "lib-usage-play29" % "0.3.33",
"io.flow" %% "lib-test-utils-play29" % "0.3.1" % Test,
"net.sourceforge.htmlcleaner" % "htmlcleaner" % "2.29",
"org.postgresql" % "postgresql" % "42.7.4",
"org.apache.commons" % "commons-text" % "1.15.0",
Expand Down Expand Up @@ -97,8 +97,8 @@ lazy val www = project
"org.webjars" % "bootstrap" % "3.4.1" % Runtime,
"org.webjars" % "jquery" % "3.7.1" % Runtime,
"org.webjars" % "bootstrap-social" % "5.0.0" % Runtime,
"io.flow" %% "lib-play-play29" % "0.8.71",
"io.flow" %% "lib-test-utils-play29" % "0.2.98" % Test,
"io.flow" %% "lib-play-play29" % "0.8.74",
"io.flow" %% "lib-test-utils-play29" % "0.3.1" % Test,
),
scalacOptions ++= allScalacOptions,
)
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.1")

resolvers += "Flow Plugins" at "https://flow.jfrog.io/flow/plugins-release/"

addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.73")
addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.74")

// Resolve scala-xml version dependency mismatch, see https://github.com/sbt/sbt/issues/7007
ThisBuild / libraryDependencySchemes ++= Seq(
Expand Down