Ivy 2.3.0-sbt-fa726854dd30be842ff9e6d2093df6adfe3871f5

Fixes https://github.com/sbt/sbt/issues/2366
This commit is contained in:
Eugene Yokota 2020-02-22 15:29:37 -05:00
parent 3132a3eb59
commit 2d6f102f9a
2 changed files with 5 additions and 2 deletions

View File

@ -11,9 +11,12 @@ ThisBuild / version := {
val old = (ThisBuild / version).value
nightlyVersion match {
case Some(v) => v
case _ => old
case _ =>
if ((ThisBuild / isSnapshot).value) "1.4.0-SNAPSHOT"
else old
}
}
ThisBuild / organization := "org.scala-sbt"
ThisBuild / bintrayPackage := "librarymanagement"
ThisBuild / homepage := Some(url("https://github.com/sbt/librarymanagement"))

View File

@ -41,7 +41,7 @@ object Dependencies {
def addSbtUtilCache(p: Project): Project = addSbtModule(p, sbtUtilPath, "utilCache", utilCache)
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 scalaV = "2.12"