Skip to content
Open
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
8 changes: 4 additions & 4 deletions project/LibDependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@ import sbt._

object LibDependencies {
val play28 = Seq(
"com.typesafe.play" %% "play" % "2.8.21"
"com.typesafe.play" %% "play-json" % "2.8.2"
)

val play29 = Seq(
"com.typesafe.play" %% s"play" % "2.9.0"
"com.typesafe.play" %% s"play-json" % "2.9.0"
)

val play30 = Seq(
"org.playframework" %% s"play" % "3.0.0"
"org.playframework" %% s"play-json" % "3.0.0"
)

val test = Seq(
Expand All @@ -19,4 +19,4 @@ object LibDependencies {
"org.pegdown" % "pegdown" % "1.6.0",
"com.vladsch.flexmark" % "flexmark-all" % "0.62.2"
).map(_ % Test)
}
}