mirror of https://github.com/sbt/sbt.git
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:
parent
5dd2b1f16a
commit
85a05ed237
|
|
@ -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 {
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue