mirror of https://github.com/sbt/sbt.git
Merge pull request #4070 from steinybot/fix/3432
Add dependencyResolution scoped to updateSbtClassifiers task
This commit is contained in:
commit
7690a1bd24
|
|
@ -2168,6 +2168,7 @@ object Classpaths {
|
|||
filterImplicit = false,
|
||||
overrideScalaVersion = true).withScalaOrganization(scalaOrganization.value))
|
||||
},
|
||||
dependencyResolution := IvyDependencyResolution(ivyConfiguration.value),
|
||||
updateSbtClassifiers in TaskGlobal := (Def.task {
|
||||
val lm = dependencyResolution.value
|
||||
val s = streams.value
|
||||
|
|
|
|||
|
|
@ -1 +1,9 @@
|
|||
scalaVersion := "2.11.11"
|
||||
|
||||
ivyConfiguration := {
|
||||
throw new RuntimeException("updateSbtClassifiers should use updateSbtClassifiers / ivyConfiguration")
|
||||
}
|
||||
|
||||
dependencyResolution := {
|
||||
throw new RuntimeException("updateSbtClassifiers should use updateSbtClassifiers / dependencyResolution")
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue