Skip to content

Commit

Permalink
FDN-3000: Upgrade libraries (#589)
Browse files Browse the repository at this point in the history
  • Loading branch information
gheine authored Nov 12, 2024
1 parent 86ed120 commit 03684d8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ lazy val api = project
scalafmtOnCompile := true,
routesImport += "io.flow.registry.v0.Bindables._",
routesGenerator := InjectedRoutesGenerator,
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.40.1",
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.42.1",
libraryDependencies ++= Seq(
ws,
"com.google.inject" % "guice" % "5.1.0",
"com.google.inject.extensions" % "guice-assistedinject" % "5.1.0",
"org.projectlombok" % "lombok" % "1.18.34" % "provided",
jdbc,
"io.flow" %% "lib-postgresql-play-play28" % "0.5.73",
"io.flow" %% "lib-metrics-play28" % "1.0.97",
"io.flow" %% "lib-postgresql-play-play28" % "0.5.76",
"io.flow" %% "lib-metrics-play28" % "1.1.1",
"com.typesafe.play" %% "play-json-joda" % "2.9.4",
"org.postgresql" % "postgresql" % "42.7.4",
"net.jcazevedo" %% "moultingyaml" % "0.4.2",
"io.flow" %% "lib-test-utils-play28" % "0.2.40" % Test,
"io.flow" %% "lib-usage-play28" % "0.2.58",
"io.flow" %% "lib-log" % "0.2.27",
"io.flow" %% "lib-test-utils-play28" % "0.2.41" % Test,
"io.flow" %% "lib-usage-play28" % "0.2.59",
"io.flow" %% "lib-log" % "0.2.28",
),
Test / javaOptions ++= Seq(
"--add-exports=java.base/sun.security.x509=ALL-UNNAMED",
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ 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.57")
addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.59")

// Resolve scala-xml version dependency mismatch, see https://github.com/sbt/sbt/issues/7007
ThisBuild / libraryDependencySchemes ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always,
)

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.2")

0 comments on commit 03684d8

Please sign in to comment.