mirror of https://github.com/sbt/sbt.git
include publish-to resolver in other-resolvers
This commit is contained in:
parent
d79fa21348
commit
db5019a178
|
|
@ -474,7 +474,7 @@ object Classpaths
|
||||||
defaultConfiguration in GlobalScope :== Some(Configurations.Compile),
|
defaultConfiguration in GlobalScope :== Some(Configurations.Compile),
|
||||||
defaultConfigurationMapping in GlobalScope <<= defaultConfiguration{ case Some(d) => "*->" + d.name; case None => "*->*" },
|
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)) },
|
ivyPaths <<= (baseDirectory, appConfiguration) { (base, app) => new IvyPaths(base, Option(app.provider.scalaProvider.launcher.ivyHome)) },
|
||||||
otherResolvers in GlobalScope :== Nil,
|
otherResolvers <<= publishTo(_.toList),
|
||||||
projectResolver <<= projectResolverTask,
|
projectResolver <<= projectResolverTask,
|
||||||
projectDependencies <<= projectDependenciesTask,
|
projectDependencies <<= projectDependenciesTask,
|
||||||
libraryDependencies in GlobalScope :== Nil,
|
libraryDependencies in GlobalScope :== Nil,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue