Skip to content

Commit

Permalink
Merge pull request #346 from mkurz/upgrades29
Browse files Browse the repository at this point in the history
Dependency upgrades for the 2.9.x branch
  • Loading branch information
mkurz authored Jun 7, 2023
2 parents af6d3a3 + 0ee4532 commit 5b96026
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions play-java-dagger2-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ lazy val root = (project in file("."))
scalaVersion := crossScalaVersions.value.head,
libraryDependencies ++= Seq(
ws,
"com.google.dagger" % "dagger" % "2.46",
"com.google.dagger" % "dagger-compiler" % "2.46"
"com.google.dagger" % "dagger" % "2.46.1",
"com.google.dagger" % "dagger-compiler" % "2.46.1"
),
// move the java annotation code into generated directory
(Compile / javacOptions) := { (Compile / managedSourceDirectories).value.head.mkdirs(); javacOptions.value },
Expand Down
2 changes: 1 addition & 1 deletion play-java-rest-api-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ lazy val root = (project in file("."))
javaJpa,
"com.h2database" % "h2" % "2.1.214",
"org.hibernate" % "hibernate-core" % "6.2.4.Final",
"io.dropwizard.metrics" % "metrics-core" % "4.2.18",
"io.dropwizard.metrics" % "metrics-core" % "4.2.19",
"com.palominolabs.http" % "url-builder" % "1.1.5",
"net.jodah" % "failsafe" % "2.4.4",
),
Expand Down
2 changes: 1 addition & 1 deletion play-java-rest-api-example/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0-M6")

// Load testing tool:
// http://gatling.io/docs/2.2.2/extensions/sbt_plugin.html
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.1")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.3")
2 changes: 1 addition & 1 deletion play-java-telemetry-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0-M6")

addSbtPlugin("com.lightbend.cinnamon" % "sbt-cinnamon" % "2.17.2")
addSbtPlugin("com.lightbend.cinnamon" % "sbt-cinnamon" % "2.17.3")

credentials += Credentials(Path.userHome / ".lightbend" / "commercial.credentials")

Expand Down
2 changes: 1 addition & 1 deletion play-scala-isolated-slick-example/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ lazy val databaseUrl = sys.env.getOrElse("DB_DEFAULT_URL", "jdbc:h2:./test")
lazy val databaseUser = sys.env.getOrElse("DB_DEFAULT_USER", "sa")
lazy val databasePassword = sys.env.getOrElse("DB_DEFAULT_PASSWORD", "")

val FlywayVersion = "9.17.0"
val FlywayVersion = "9.19.1"

(ThisBuild / version) := "1.1-SNAPSHOT"

Expand Down
2 changes: 1 addition & 1 deletion play-scala-rest-api-example/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.10.3")

// Load testing tool:
// http://gatling.io/docs/2.2.2/extensions/sbt_plugin.html
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.1")
addSbtPlugin("io.gatling" % "gatling-sbt" % "4.3.3")

// Scala formatting: "sbt scalafmt"
addSbtPlugin("com.lucidchart" % "sbt-scalafmt" % "1.16")
2 changes: 1 addition & 1 deletion play-scala-telemetry-example/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// The Play plugin
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0-M6")

addSbtPlugin("com.lightbend.cinnamon" % "sbt-cinnamon" % "2.17.2")
addSbtPlugin("com.lightbend.cinnamon" % "sbt-cinnamon" % "2.17.3")

credentials += Credentials(Path.userHome / ".lightbend" / "commercial.credentials")

Expand Down

0 comments on commit 5b96026

Please sign in to comment.