mirror of https://github.com/sbt/sbt.git
fix doubled cache when boot Ivy directory configured
This commit is contained in:
parent
d60175a337
commit
02421e46f5
|
|
@ -496,7 +496,7 @@ object Classpaths
|
|||
moduleID <<= normalizedName.identity,
|
||||
defaultConfiguration in GlobalScope :== Some(Configurations.Compile),
|
||||
defaultConfigurationMapping in GlobalScope <<= defaultConfiguration{ case Some(d) => "*->" + d.name; case None => "*->*" },
|
||||
ivyPaths <<= (baseDirectory, appConfiguration) { (base, app) => new IvyPaths(base, Option(app.provider.scalaProvider.launcher.ivyHome).map(_ / "cache")) },
|
||||
ivyPaths <<= (baseDirectory, appConfiguration) { (base, app) => new IvyPaths(base, Option(app.provider.scalaProvider.launcher.ivyHome)) },
|
||||
otherResolvers <<= publishTo(_.toList),
|
||||
projectResolver <<= projectResolverTask,
|
||||
projectDependencies <<= projectDependenciesTask,
|
||||
|
|
|
|||
Loading…
Reference in New Issue