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
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ lazy val api = project
"com.google.inject.extensions" % "guice-assistedinject" % "5.1.0",
"org.projectlombok" % "lombok" % "1.18.42" % "provided",
jdbc,
"io.flow" %% "lib-postgresql-play-play29" % "0.6.59",
"io.flow" %% "lib-metrics-play29" % "1.1.72",
"io.flow" %% "lib-postgresql-play-play29" % "0.6.61",
"io.flow" %% "lib-metrics-play29" % "1.1.74",
"org.postgresql" % "postgresql" % "42.7.4",
"net.jcazevedo" %% "moultingyaml" % "0.4.2",
"io.flow" %% "lib-test-utils-play29" % "0.3.1" % Test,
"io.flow" %% "lib-usage-play29" % "0.3.34",
"io.flow" %% "lib-log-play29" % "0.2.75",
"io.flow" %% "lib-test-utils-play29" % "0.3.3" % Test,
"io.flow" %% "lib-usage-play29" % "0.3.36",
"io.flow" %% "lib-log-play29" % "0.2.77",
),
Test / javaOptions ++= Seq(
"--add-exports=java.base/sun.security.x509=ALL-UNNAMED",
Expand All @@ -55,7 +55,7 @@ lazy val api = project
lazy val commonSettings: Seq[Setting[_]] = Seq(
name ~= ("registry-" + _),
libraryDependencies ++= Seq(
"io.flow" %% "lib-healthcheck-play29" % "0.0.90",
"io.flow" %% "lib-healthcheck-play29" % "0.0.92",
specs2 % Test,
),
Compile / doc / sources := Seq.empty,
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,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.74")
addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.75")

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