Skip to content

Commit

Permalink
LOG-1825: Upgrade libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
cjbos committed Mar 14, 2024
1 parent 62f04db commit 52573b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
24 changes: 12 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ lazy val api = project
.enablePlugins(JavaAppPackaging, JavaAgent)
.settings(commonSettings: _*)
.settings(
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.28.0",
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.31.2",
routesImport += "io.flow.dependency.v0.Bindables.Core._",
routesImport += "io.flow.dependency.v0.Bindables.Models._",
routesGenerator := InjectedRoutesGenerator,
Expand All @@ -58,13 +58,13 @@ lazy val api = project
"com.google.inject.extensions" % "guice-assistedinject" % "5.1.0",
"org.projectlombok" % "lombok" % "1.18.30" % "provided",
"com.sendgrid" % "sendgrid-java" % "4.7.1",
"io.flow" %% "lib-event-sync-play28" % "0.6.38",
"io.flow" %% "lib-metrics-play28" % "1.0.79",
"io.flow" %% "lib-log" % "0.2.14",
"io.flow" %% "lib-usage-play28" % "0.2.38",
"io.flow" %% "lib-test-utils-play28" % "0.2.24" % Test,
"io.flow" %% "lib-event-sync-play28" % "0.6.43",
"io.flow" %% "lib-metrics-play28" % "1.0.83",
"io.flow" %% "lib-log" % "0.2.15",
"io.flow" %% "lib-usage-play28" % "0.2.41",
"io.flow" %% "lib-test-utils-play28" % "0.2.27" % Test,
"net.sourceforge.htmlcleaner" % "htmlcleaner" % "2.29",
"org.postgresql" % "postgresql" % "42.7.1",
"org.postgresql" % "postgresql" % "42.7.2",
"org.apache.commons" % "commons-text" % "1.11.0",
),
scalacOptions ++= allScalacOptions,
Expand All @@ -80,7 +80,7 @@ lazy val www = project
.enablePlugins(SbtWeb)
.settings(commonSettings: _*)
.settings(
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.28.0",
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.31.2",
routesImport += "io.flow.dependency.v0.Bindables.Core._",
routesImport += "io.flow.dependency.v0.Bindables.Models._",
routesGenerator := InjectedRoutesGenerator,
Expand All @@ -90,12 +90,12 @@ lazy val www = project
"com.google.inject" % "guice" % "5.1.0",
"com.google.inject.extensions" % "guice-assistedinject" % "5.1.0",
"org.projectlombok" % "lombok" % "1.18.30" % "provided",
"org.webjars" %% "webjars-play" % "2.8.18",
"org.webjars" %% "webjars-play" % "3.0.1",
"org.webjars" % "bootstrap" % "3.4.1",
"org.webjars" % "font-awesome" % "6.4.2",
"org.webjars" % "font-awesome" % "6.5.1",
"org.webjars" % "jquery" % "3.7.1",
"org.webjars.bower" % "bootstrap-social" % "5.1.1",
"io.flow" %% "lib-test-utils-play28" % "0.2.24" % Test,
"io.flow" %% "lib-test-utils-play28" % "0.2.27" % Test,
),
scalacOptions ++= allScalacOptions,
)
Expand All @@ -115,7 +115,7 @@ lazy val commonSettings: Seq[Setting[_]] = Seq(
scalafmtOnCompile := true,
name ~= ("dependency-" + _),
libraryDependencies ++= Seq(
"io.flow" %% "lib-play-play28" % "0.7.90",
"io.flow" %% "lib-play-play28" % "0.7.96",
"com.typesafe.play" %% "play-json-joda" % "2.9.4",
),
Test / javaOptions ++= Seq(
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.54")
addSbtPlugin("io.flow" % "sbt-flow-linter" % "0.0.55")

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

0 comments on commit 52573b7

Please sign in to comment.