From 85a05ed237df7da044ee0071a21d6453c93a55b3 Mon Sep 17 00:00:00 2001 From: Martin Duhem Date: Mon, 23 Nov 2015 15:44:23 +0100 Subject: [PATCH] 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. --- .../test/scala/sbt/internal/inc/IvyComponentCompilerSpec.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 661f7598f..38544bbfa 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 @@ -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 {