From f32ea08a5367f61e1611f431677326ab931c4d27 Mon Sep 17 00:00:00 2001 From: Grzegorz Kossakowski Date: Wed, 16 Mar 2016 20:28:41 +0100 Subject: [PATCH] Zinc is compatible with Scala 2.10 and 2.11 only The class-based-dependencies branch nuked compatibility with older Scala compiler versions. --- .../internal/inc/IvyComponentCompilerSpec.scala | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/internal/incrementalcompiler-ivy-integration/src/test/scala/sbt/internal/inc/IvyComponentCompilerSpec.scala b/internal/incrementalcompiler-ivy-integration/src/test/scala/sbt/internal/inc/IvyComponentCompilerSpec.scala index 38544bbfa..669aa3c77 100644 --- a/internal/incrementalcompiler-ivy-integration/src/test/scala/sbt/internal/inc/IvyComponentCompilerSpec.scala +++ b/internal/incrementalcompiler-ivy-integration/src/test/scala/sbt/internal/inc/IvyComponentCompilerSpec.scala @@ -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