Skip to content

Commit

Permalink
PAY-3733: Upgrade libraries com.datadoghq, io.flow (#763)
Browse files Browse the repository at this point in the history
Co-authored-by: Jean Logeart <[email protected]>
  • Loading branch information
pmlemos and jlogeart authored Jul 19, 2024
1 parent a7aaf4b commit c6c0fcc
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name := "dependency"

organization := "io.flow"

ThisBuild / scalaVersion := "2.13.13"
ThisBuild / scalaVersion := "2.13.14"

ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always
ThisBuild / libraryDependencySchemes += "org.scoverage" %% "sbt-scoverage" % VersionScheme.Always
Expand Down Expand Up @@ -49,7 +49,7 @@ lazy val api = project
.enablePlugins(JavaAppPackaging, JavaAgent)
.settings(commonSettings: _*)
.settings(
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.37.0",
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.37.1",
routesImport += "io.flow.dependency.v0.Bindables.Core._",
routesImport += "io.flow.dependency.v0.Bindables.Models._",
routesGenerator := InjectedRoutesGenerator,
Expand All @@ -61,11 +61,11 @@ lazy val api = project
"com.google.inject.extensions" % "guice-assistedinject" % "5.1.0",
"org.projectlombok" % "lombok" % "1.18.34" % "provided",
"com.sendgrid" % "sendgrid-java" % "4.7.1",
"io.flow" %% "lib-event-sync-play28" % "0.6.58",
"io.flow" %% "lib-metrics-play28" % "1.0.93",
"io.flow" %% "lib-log" % "0.2.22",
"io.flow" %% "lib-usage-play28" % "0.2.52",
"io.flow" %% "lib-test-utils-play28" % "0.2.36" % Test,
"io.flow" %% "lib-event-sync-play28" % "0.6.59",
"io.flow" %% "lib-metrics-play28" % "1.0.94",
"io.flow" %% "lib-log" % "0.2.23",
"io.flow" %% "lib-usage-play28" % "0.2.53",
"io.flow" %% "lib-test-utils-play28" % "0.2.37" % Test,
"net.sourceforge.htmlcleaner" % "htmlcleaner" % "2.29",
"org.postgresql" % "postgresql" % "42.7.3",
"org.apache.commons" % "commons-text" % "1.12.0",
Expand All @@ -83,7 +83,7 @@ lazy val www = project
.enablePlugins(SbtWeb)
.settings(commonSettings: _*)
.settings(
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.37.0",
javaAgents += "com.datadoghq" % "dd-java-agent" % "1.37.1",
routesImport += "io.flow.dependency.v0.Bindables.Core._",
routesImport += "io.flow.dependency.v0.Bindables.Models._",
routesGenerator := InjectedRoutesGenerator,
Expand All @@ -98,7 +98,7 @@ lazy val www = project
"org.webjars" % "font-awesome" % "6.5.2",
"org.webjars" % "jquery" % "3.7.1",
"org.webjars.bower" % "bootstrap-social" % "5.1.1",
"io.flow" %% "lib-test-utils-play28" % "0.2.36" % Test,
"io.flow" %% "lib-test-utils-play28" % "0.2.37" % Test,
),
scalacOptions ++= allScalacOptions,
)
Expand All @@ -118,7 +118,7 @@ lazy val commonSettings: Seq[Setting[_]] = Seq(
scalafmtOnCompile := true,
name ~= ("dependency-" + _),
libraryDependencies ++= Seq(
"io.flow" %% "lib-play-play28" % "0.8.3",
"io.flow" %% "lib-play-play28" % "0.8.4",
"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 @@ -25,4 +25,4 @@ ThisBuild / libraryDependencySchemes ++= Seq(
)

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.11")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.1.0")

0 comments on commit c6c0fcc

Please sign in to comment.