Bumping up Scala version to 2.10.5/2.11.6. Fixes #1980

To pass File => Unit callback across the classloader boundary
I am encoding it as a java.util.List[File] by overriding
 method.
This was needed since Java didn't allow me to cast
from one classloader to the other.
This commit is contained in:
Eugene Yokota 2015-06-19 13:40:10 -04:00
parent e381ac6157
commit d0473906c2
1 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ def buildLevelSettings: Seq[Setting[_]] = Seq(
)
def commonSettings: Seq[Setting[_]] = Seq(
scalaVersion := "2.10.4",
scalaVersion := scala210,
publishArtifact in packageDoc := false,
publishMavenStyle := false,
componentID := None,
@ -387,7 +387,7 @@ lazy val scriptedBaseProj = (project in scriptedPath / "base").
)
lazy val scriptedSbtProj = (project in scriptedPath / "sbt").
dependsOn (ioProj, logProj, processProj, scriptedBaseProj).
dependsOn (ioProj, logProj, processProj, scriptedBaseProj, interfaceProj).
settings(
baseSettings,
name := "Scripted sbt",