Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. diff --git a/build.sbt b/build.sbt
  2. index dbaea19..1ace900 100644
  3. --- a/build.sbt
  4. +++ b/build.sbt
  5. @@ -2,12 +2,12 @@ lazy val `play-doc` = (project in file("."))
  6. .enablePlugins(PlayLibrary, SbtTwirl, PlayReleaseBase)
  7.  
  8. // we need crossVersionScala since interplay won't build PlayLibrary for 2.10.6
  9. -crossScalaVersions := Seq("2.10.6", "2.11.8")
  10. +crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0-RC2")
  11.  
  12. libraryDependencies ++= Seq(
  13. "org.pegdown" % "pegdown" % "1.6.0",
  14. "commons-io" % "commons-io" % "2.5",
  15. - "org.specs2" %% "specs2-core" % "3.8.4" % "test"
  16. + "org.specs2" %% "specs2-core" % "3.8.5.1" % "test"
  17. )
  18.  
  19. // ASM version 5 will support Java 8 but not Java 9
  20. diff --git a/project/plugins.sbt b/project/plugins.sbt
  21. index 776f982..255d0b8 100644
  22. --- a/project/plugins.sbt
  23. +++ b/project/plugins.sbt
  24. @@ -1,2 +1,2 @@
  25. addSbtPlugin("com.typesafe.play" % "interplay" % "1.2.0")
  26. -addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.2.0")
  27. +addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.2.1-SNAPSHOT")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement