mirror of https://github.com/sbt/sbt.git
Ivy 2.3.0-sbt-fa726854dd30be842ff9e6d2093df6adfe3871f5
Fixes https://github.com/sbt/sbt/issues/2366
This commit is contained in:
parent
3132a3eb59
commit
2d6f102f9a
|
|
@ -11,9 +11,12 @@ ThisBuild / version := {
|
||||||
val old = (ThisBuild / version).value
|
val old = (ThisBuild / version).value
|
||||||
nightlyVersion match {
|
nightlyVersion match {
|
||||||
case Some(v) => v
|
case Some(v) => v
|
||||||
case _ => old
|
case _ =>
|
||||||
|
if ((ThisBuild / isSnapshot).value) "1.4.0-SNAPSHOT"
|
||||||
|
else old
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ThisBuild / organization := "org.scala-sbt"
|
ThisBuild / organization := "org.scala-sbt"
|
||||||
ThisBuild / bintrayPackage := "librarymanagement"
|
ThisBuild / bintrayPackage := "librarymanagement"
|
||||||
ThisBuild / homepage := Some(url("https://github.com/sbt/librarymanagement"))
|
ThisBuild / homepage := Some(url("https://github.com/sbt/librarymanagement"))
|
||||||
|
|
|
||||||
|
|
@ -41,7 +41,7 @@ object Dependencies {
|
||||||
def addSbtUtilCache(p: Project): Project = addSbtModule(p, sbtUtilPath, "utilCache", utilCache)
|
def addSbtUtilCache(p: Project): Project = addSbtModule(p, sbtUtilPath, "utilCache", utilCache)
|
||||||
|
|
||||||
val launcherInterface = "org.scala-sbt" % "launcher-interface" % "1.0.0"
|
val launcherInterface = "org.scala-sbt" % "launcher-interface" % "1.0.0"
|
||||||
val ivy = "org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-88d6a93d15f9b029958c1c289a8859e8dfe31a19"
|
val ivy = "org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-fa726854dd30be842ff9e6d2093df6adfe3871f5"
|
||||||
|
|
||||||
val sbtV = "1.0"
|
val sbtV = "1.0"
|
||||||
val scalaV = "2.12"
|
val scalaV = "2.12"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue