Skip to content

Commit

Permalink
Updated playframework to 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tototoshi committed Oct 29, 2023
1 parent 9b0c925 commit 8cf794e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
val flywayPlayVersion = "8.0.1"
val flywayPlayVersion = "9.0.0-SNAPSHOT"

val scalaVersion_2_13 = "2.13.12"
val scalaVersion_3 = "3.3.1"
Expand Down Expand Up @@ -37,8 +37,8 @@ lazy val plugin = project
version := flywayPlayVersion,
resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/",
libraryDependencies ++= Seq(
"com.typesafe.play" %% "play" % play.core.PlayVersion.current % "provided",
"com.typesafe.play" %% "play-test" % play.core.PlayVersion.current % "test"
"org.playframework" %% "play" % play.core.PlayVersion.current % "provided",
"org.playframework" %% "play-test" % play.core.PlayVersion.current % "test"
excludeAll ExclusionRule(organization = "org.specs2"),
"org.flywaydb" % "flyway-core" % flywayVersion,
scalatest
Expand All @@ -62,7 +62,7 @@ lazy val playapp = project
"com.h2database" % "h2" % "2.2.224",
"postgresql" % "postgresql" % "9.1-901-1.jdbc4",
"com.fasterxml.jackson.module" %% "jackson-module-scala" % "2.15.3",
"com.typesafe.play" %% "play-test" % play.core.PlayVersion.current % "test"
"org.playframework" %% "play-test" % play.core.PlayVersion.current % "test"
excludeAll ExclusionRule(organization = "org.specs2"),
"org.scalikejdbc" %% "scalikejdbc" % scalikejdbcVersion % "test",
"org.scalikejdbc" %% "scalikejdbc-config" % scalikejdbcVersion % "test",
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.9.0")
addSbtPlugin("org.playframework" % "sbt-plugin" % "3.0.0")

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

Expand Down

0 comments on commit 8cf794e

Please sign in to comment.