Merge pull request #4070 from steinybot/fix/3432

Add dependencyResolution scoped to updateSbtClassifiers task
This commit is contained in:
eugene yokota 2018-04-06 05:58:27 -04:00 committed by GitHub
commit 7690a1bd24
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 0 deletions

View File

@ -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

View File

@ -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")
}