mirror of https://github.com/sbt/sbt.git
Merge pull request #4732 from smarter/fix-updatesbtclass
updateSbtClassifiers: use the correct scalaOrganization
This commit is contained in:
commit
aefd0969b1
|
|
@ -2589,6 +2589,7 @@ object Classpaths {
|
|||
// to fix https://github.com/sbt/sbt/issues/2686
|
||||
scalaVersion := appConfiguration.value.provider.scalaProvider.version,
|
||||
scalaBinaryVersion := binaryScalaVersion(scalaVersion.value),
|
||||
scalaOrganization := ScalaArtifacts.Organization,
|
||||
scalaModuleInfo := {
|
||||
Some(
|
||||
ScalaModuleInfo(
|
||||
|
|
|
|||
|
|
@ -7,3 +7,6 @@ ivyConfiguration := {
|
|||
dependencyResolution := {
|
||||
throw new RuntimeException("updateSbtClassifiers should use updateSbtClassifiers / dependencyResolution")
|
||||
}
|
||||
|
||||
scalaOrganization := "doesnt.exist"
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue