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.5.19
Browse files Browse the repository at this point in the history
  • Loading branch information
konradwudkowski committed Jan 22, 2019
1 parent d39e24e commit 8c5daf5
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions project/LibraryDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import sbt._

object LibraryDependencies {

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

val compile: Seq[ModuleID] = PlayCrossCompilation.dependencies(
Expand All @@ -13,33 +13,30 @@ object LibraryDependencies {
play25 = Seq(
"org.slf4j" % "slf4j-api" % "1.7.21",
"com.typesafe.play" %% "play" % play25Version,
"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.10",
"org.reactivemongo" %% "reactivemongo-play-json" % "0.16.0-play26"
)
)

val test: Seq[ModuleID] = PlayCrossCompilation.dependencies(
shared = Seq(
"com.outworkers" %% "util-samplers" % "0.40.0" % Test,
"org.pegdown" % "pegdown" % "1.6.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.13.4" % Test,
"org.scalamock" %% "scalamock" % "4.1.0" % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test
"com.outworkers" %% "util-samplers" % "0.40.0" % Test,
"org.pegdown" % "pegdown" % "1.6.0" % Test,
"org.scalacheck" %% "scalacheck" % "1.13.4" % Test,
"org.scalamock" %% "scalamock" % "4.1.0" % Test,
"org.scalatest" %% "scalatest" % "3.0.5" % Test,
"ch.qos.logback" % "logback-classic" % "1.2.3" % Test
),
play25 = Seq(
"ch.qos.logback" % "logback-classic" % "1.1.2" % Test,
"com.typesafe.play" %% "play-test" % play25Version % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "2.0.1" % Test
),
play26 = Seq(
"ch.qos.logback" % "logback-classic" % "1.2.3" % Test,
"com.typesafe.play" %% "play-test" % play26Version % Test,
"org.scalatestplus.play" %% "scalatestplus-play" % "3.1.2" % Test
)
Expand Down

0 comments on commit 8c5daf5

Please sign in to comment.