mirror of https://github.com/sbt/sbt.git
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:
parent
b04faef33f
commit
f32ea08a53
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue