Fixes #2005. Bump to ivy 2.3.0-sbt-c5d1b95fdcc1e1007740ffbecf4eb07abc51ec93

When I went digging into Ivy's code base I discovered that it's been
checking if the repository layout pattern ends with M2_PATTERN to use
maven-metadata.xml, which for sbt would return false since we customize
the mattern -
https://github.com/apache/ant-ivy/blob/2.3.0/src/java/org/apache/ivy/plu
gins/resolver/IBiblioResolver.java#L497-L499
This commit is contained in:
Eugene Yokota 2015-06-25 16:39:22 -04:00
parent 01f1627702
commit 538982928a
3 changed files with 7 additions and 1 deletions

View File

@ -9,7 +9,7 @@ object Dependencies {
lazy val scala211 = "2.11.6"
lazy val jline = "jline" % "jline" % "2.11"
lazy val ivy = "org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f"
lazy val ivy = "org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-c5d1b95fdcc1e1007740ffbecf4eb07abc51ec93"
lazy val jsch = "com.jcraft" % "jsch" % "0.1.46" intransitive ()
lazy val sbinary = "org.scala-tools.sbinary" %% "sbinary" % "0.4.2"
lazy val sbtSerialization = "org.scala-sbt" %% "serialization" % "0.1.1"

View File

@ -0,0 +1,5 @@
lazy val root = (project in file(".")).
settings(
libraryDependencies += "org.webjars" %% "webjars-play" % "2.1.0-3",
resolvers += Resolver.typesafeRepo("releases")
)

View File

@ -0,0 +1 @@
> update