Fix command and definition of compiler bridge

The compiler bridge had a dependency on the scala compiler in the
version defined in the build definition. This means that when trying to
fetch the compiler bridge for, say, Scala 2.9.2, we would also pull in
the Scala compiler 2.10.5.

The compiler bridge now has a "provided" dependency on the Scala
compiler.
This commit is contained in:
Martin Duhem 2015-11-23 15:44:23 +01:00
parent 5dd2b1f16a
commit 85a05ed237
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
package sbt.internal.inc
import sbt.io.IO
import sbt.util.{ Level, Logger }
import sbt.util.Logger
class IvyComponentCompilerSpec extends BridgeProviderSpecification {