mirror of https://github.com/sbt/sbt.git
Merge pull request #2925 from eed3si9n/wip/nightly
Fix xml and parser-combinator versions
This commit is contained in:
commit
ce9a022dc3
|
|
@ -14,7 +14,7 @@ def buildLevelSettings: Seq[Setting[_]] = inThisBuild(Seq(
|
||||||
description := "sbt is an interactive build tool",
|
description := "sbt is an interactive build tool",
|
||||||
bintrayOrganization := Some("sbt"),
|
bintrayOrganization := Some("sbt"),
|
||||||
bintrayRepository := {
|
bintrayRepository := {
|
||||||
if (!isSnapshot.value) "maven-releases"
|
if (publishStatus.value == "releases") "maven-releases"
|
||||||
else "maven-snapshots"
|
else "maven-snapshots"
|
||||||
},
|
},
|
||||||
bintrayPackage := "sbt",
|
bintrayPackage := "sbt",
|
||||||
|
|
|
||||||
|
|
@ -101,6 +101,6 @@ object Dependencies {
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
val scalaXml = scala211Module("scala-xml", "1.0.1")
|
val scalaXml = scala211Module("scala-xml", "1.0.6")
|
||||||
val scalaParsers = scala211Module("scala-parser-combinators", "1.0.1")
|
val scalaParsers = scala211Module("scala-parser-combinators", "1.0.5")
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,7 @@
|
||||||
maven-central
|
maven-central
|
||||||
typesafe-ivy-releases: https://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
|
typesafe-ivy-releases: https://repo.typesafe.com/typesafe/ivy-releases/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
|
||||||
sbt-ivy-snapshots: https://repo.scala-sbt.org/scalasbt/ivy-snapshots/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
|
sbt-ivy-snapshots: https://repo.scala-sbt.org/scalasbt/ivy-snapshots/, [organization]/[module]/[revision]/[type]s/[artifact](-[classifier]).[ext], bootOnly
|
||||||
|
sbt-maven-snapshots: https://repo.scala-sbt.org/scalasbt/maven-snapshots/, bootOnly
|
||||||
|
|
||||||
[boot]
|
[boot]
|
||||||
directory: ${sbt.boot.directory-${sbt.global.base-${user.home}/.sbt}/boot/}
|
directory: ${sbt.boot.directory-${sbt.global.base-${user.home}/.sbt}/boot/}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue