mirror of https://github.com/sbt/sbt.git
Move ZincBridgeProvider to `xsbti.compile`
Before, we were using `sbt.inc`. As we have settled to define all the interfaces in the `xsbti.compile` namespaces, it's not worth it to force users remember other locations for the interfaces forwarding the default implementations in Scala.
This commit is contained in:
parent
e071577d6a
commit
19ddb6f2a2
|
|
@ -1,7 +1,6 @@
|
|||
package sbt.inc;
|
||||
package xsbti.compile;
|
||||
|
||||
import sbt.internal.inc.ZincComponentCompiler;
|
||||
import sbt.internal.inc.ZincComponentCompiler$;
|
||||
import sbt.internal.inc.ZincComponentManager;
|
||||
import sbt.internal.librarymanagement.IvyConfiguration;
|
||||
import sbt.librarymanagement.Resolver;
|
||||
|
|
@ -10,10 +9,8 @@ import scala.None$;
|
|||
import xsbti.ComponentProvider;
|
||||
import xsbti.GlobalLock;
|
||||
import xsbti.Logger;
|
||||
import xsbti.compile.CompilerBridgeProvider;
|
||||
|
||||
import java.io.File;
|
||||
import java.util.concurrent.Callable;
|
||||
|
||||
public interface ZincBridgeProvider {
|
||||
/**
|
||||
Loading…
Reference in New Issue