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