mirror of
https://github.com/sbt/sbt.git
synced 2026-08-30 09:50:02 +02:00
Adding scalaOrg setting key for scala clones.
Adding scalaOrg key that specifies organization (artifactId) of scala used in the project. The change does not affect version checks for dependecies and LauncherConfiguration. Modified scalaProvider cache in Launcher to use (scalaOrg, version) as a key. Downloaded jars are stored in the folder scala-.../lig-<scalaOrg> if scalaOrg is not default. scala-org is an advanced setting so it can not be used in build.sbt.
This commit is contained in:
@@ -7,6 +7,7 @@ public interface Launcher
|
||||
public static final int InterfaceVersion = 1;
|
||||
public ScalaProvider getScala(String version);
|
||||
public ScalaProvider getScala(String version, String reason);
|
||||
public ScalaProvider getScala(String scalaOrg, String version, String reason);
|
||||
public AppProvider app(ApplicationID id, String version);
|
||||
public ClassLoader topLoader();
|
||||
public GlobalLock globalLock();
|
||||
|
||||
Reference in New Issue
Block a user