Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
Upgrade Play to 2.6.20
Browse files Browse the repository at this point in the history
  • Loading branch information
konradwudkowski committed Nov 27, 2018
1 parent e1a78e5 commit 1168d44
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions project/LibraryDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -3,24 +3,24 @@ import sbt._
object LibraryDependencies {

private val play25Version = "2.5.12"
private val play26Version = "2.6.15"
private val play26Version = "2.6.20"

val compile: Seq[ModuleID] = PlayCrossCompilation.dependencies(
shared = Seq(
"com.github.nscala-time" %% "nscala-time" % "2.2.0",
"org.reactivemongo" %% "reactivemongo" % "0.16.0"
),
play25 = Seq(
"org.slf4j" % "slf4j-api" % "1.7.6",
"org.slf4j" % "slf4j-api" % "1.7.21",
"com.typesafe.play" %% "play" % play25Version,
"com.typesafe.play" %% "play-json" % "2.5.16",
"com.typesafe.play" %% "play-json" % "2.5.12",
"org.reactivemongo" %% "reactivemongo-play-json" % "0.16.0-play25"
),
play26 = Seq(
"org.slf4j" % "slf4j-api" % "1.7.25",
"com.typesafe.play" %% "play" % play26Version,
"com.typesafe.play" %% "play-guice" % play26Version,
"com.typesafe.play" %% "play-json" % "2.6.9",
"com.typesafe.play" %% "play-json" % "2.6.10",
"org.reactivemongo" %% "reactivemongo-play-json" % "0.16.0-play26"
)
)
Expand Down

0 comments on commit 1168d44

Please sign in to comment.