From eabbd5fb4ea5fe6d3043e5e43896a60ccc509ba1 Mon Sep 17 00:00:00 2001 From: Jason Zaugg Date: Wed, 19 Oct 2016 08:13:03 +1100 Subject: [PATCH] Bump to Scala 2.12.0-RC2 Temporarily uses genjavadoc for 2.12.0-RC1, I've requested a new version over in https://github.com/typesafehub/genjavadoc/pull/90 --- .travis.yml | 2 +- build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8d11810..1cad8a5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,7 +14,7 @@ script: scala: - 2.11.8 - 2.12.0-M5 - - 2.12.0-RC1 + - 2.12.0-RC2 jdk: - oraclejdk8 notifications: diff --git a/build.sbt b/build.sbt index 66e0a7f..ad58329 100644 --- a/build.sbt +++ b/build.sbt @@ -16,7 +16,7 @@ def osgiExport(scalaVersion: String, version: String) = { } lazy val commonSettings = Seq( - crossScalaVersions := List("2.12.0-RC1", "2.12.0-M5", "2.11.8"), + crossScalaVersions := List("2.12.0-RC2", "2.12.0-M5", "2.11.8"), scalaVersion := crossScalaVersions.value.head, organization := "org.scala-lang.modules", version := "0.8.0-SNAPSHOT" @@ -110,7 +110,7 @@ lazy val root = (project in file(".")). }, javacOptions in JavaDoc := Seq(), artifactName in packageDoc in JavaDoc := ((sv, mod, art) => "" + mod.name + "_" + sv.binary + "-" + mod.revision + "-javadoc.jar"), - libraryDependencies += compilerPlugin("com.typesafe.genjavadoc" % "genjavadoc-plugin" % "0.10" cross CrossVersion.full), + libraryDependencies += compilerPlugin("com.typesafe.genjavadoc" % "genjavadoc-plugin" % "0.10" cross CrossVersion.fullMapped { case "2.12.0-RC2" => "2.12.0-RC1" case x => x}), scalacOptions in Compile += "-P:genjavadoc:out=" + (target.value / "java") ))): _* ).