Skip to content
Open
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
6 changes: 3 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import play.core.PlayVersion.{ current => playVersion }

lazy val runChromeWebDriver = taskKey[Unit]("Run the chromewebdriver tests")

val macwire = "com.softwaremill.macwire" %% "macros" % "2.5.7"
val macwire = "com.softwaremill.macwire" %% "macros" % "2.5.9"
val lombok = "org.projectlombok" % "lombok" % "1.18.8" % Provided
val akkaCluster = Seq(
"com.typesafe.akka" %% "akka-cluster" % AkkaVersion,
Expand Down Expand Up @@ -39,10 +39,10 @@ lazy val root = (project in file("."))
"com.typesafe.play" %% "play-guice" % playVersion % Test,
macwire % Test,
// Test dependencies for running chrome driver
"io.github.bonigarcia" % "webdrivermanager" % "5.3.2" % Test,
"io.github.bonigarcia" % "webdrivermanager" % "5.3.3" % Test,
"org.seleniumhq.selenium" % "selenium-chrome-driver" % "4.9.1" % Test,
// Test framework dependencies
"org.scalatest" %% "scalatest" % "3.1.2" % Test,
"org.scalatest" %% "scalatest" % "3.1.4" % Test,
"com.novocode" % "junit-interface" % "0.11" % Test
),
(Compile / PB.targets) := Seq(
Expand Down
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
object Dependencies {
// Sync with GA (.github/workflows/build-test.yml)
val Scala212 = "2.12.18" // sync! see comment above
val Scala213 = "2.13.12" // sync! see comment above
val Scala212 = "2.12.20" // sync! see comment above
val Scala213 = "2.13.16" // sync! see comment above

val AkkaVersion = "2.5.32"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.7.2
sbt.version=1.7.3
10 changes: 5 additions & 5 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.4")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.5")

addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.3")
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.7.9")

addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.6.1")

// Protobuf
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.6")
addSbtPlugin("com.thesamet" % "sbt-protoc" % "1.0.8")
libraryDependencies += "com.thesamet.scalapb" %% "compilerplugin" % "0.11.12"
Loading