Skip to content

Instantly share code, notes, and snippets.

@schmitch
Created September 14, 2016 14:32
Show Gist options
  • Save schmitch/e5bcac800821dee9d4b533491452b7fd to your computer and use it in GitHub Desktop.
Save schmitch/e5bcac800821dee9d4b533491452b7fd to your computer and use it in GitHub Desktop.
Play Doc support for Scala 2.12.0-RC1
diff --git a/build.sbt b/build.sbt
index dbaea19..e158fa3 100644
--- a/build.sbt
+++ b/build.sbt
@@ -2,12 +2,12 @@ lazy val `play-doc` = (project in file("."))
.enablePlugins(PlayLibrary, SbtTwirl, PlayReleaseBase)
// we need crossVersionScala since interplay won't build PlayLibrary for 2.10.6
-crossScalaVersions := Seq("2.10.6", "2.11.8")
+crossScalaVersions := Seq("2.10.6", "2.11.8", "2.12.0-RC1")
libraryDependencies ++= Seq(
"org.pegdown" % "pegdown" % "1.6.0",
"commons-io" % "commons-io" % "2.5",
- "org.specs2" %% "specs2-core" % "3.8.4" % "test"
+ "org.specs2" %% "specs2-core" % "3.8.5" % "test"
)
// ASM version 5 will support Java 8 but not Java 9
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 776f982..e1408e9 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,2 +1,2 @@
addSbtPlugin("com.typesafe.play" % "interplay" % "1.2.0")
-addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.2.0")
+addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.2.1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment