Zinc is compatible with Scala 2.10 and 2.11 only

The class-based-dependencies branch nuked compatibility with older Scala
compiler versions.
This commit is contained in:
Grzegorz Kossakowski 2016-03-16 20:28:41 +01:00
parent b04faef33f
commit f32ea08a53
1 changed files with 0 additions and 14 deletions

View File

@ -5,23 +5,9 @@ import sbt.util.Logger
class IvyComponentCompilerSpec extends BridgeProviderSpecification {
val scala282 = "2.8.2"
val scala292 = "2.9.2"
val scala210 = "2.10.5"
val scala211 = "2.11.7"
"IvyComponentCompiler" should "compile the bridge for Scala 2.8" in {
IO.withTemporaryDirectory { tempDir =>
getCompilerBridge(tempDir, Logger.Null, scala282) should exist
}
}
it should "compile the bridge for Scala 2.9" in {
IO.withTemporaryDirectory { tempDir =>
getCompilerBridge(tempDir, Logger.Null, scala292) should exist
}
}
it should "compile the bridge for Scala 2.10" in {
IO.withTemporaryDirectory { tempDir =>
getCompilerBridge(tempDir, Logger.Null, scala210) should exist