Merge pull request #1607 from sbt/fix/1598-2

Fix #1598 - Ivy fails to load evicted information.
This commit is contained in:
eugene yokota 2014-09-21 20:57:14 -04:00
commit d8c9a1ac08
2 changed files with 8 additions and 1 deletions

View File

@ -0,0 +1,7 @@
[1598]: https://github.com/sbt/sbt/issues/1598
[@jsuereth]: https://github.com/jsuereth
### Fixes
* Backported ivy fix to not throw exceptions when modules are evicted. [#1598][1598] by [@jsuereth][@jsuereth]

View File

@ -174,7 +174,7 @@ object Common {
def lib(m: ModuleID) = libraryDependencies += m
lazy val jlineDep = "jline" % "jline" % "2.11"
lazy val jline = lib(jlineDep)
lazy val ivy = lib("org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-ba72610c018ef6b640551964f61d79a480b4c4e4")
lazy val ivy = lib("org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-fccfbd44c9f64523b61398a0155784dcbaeae28f")
lazy val httpclient = lib("commons-httpclient" % "commons-httpclient" % "3.1")
lazy val jsch = lib("com.jcraft" % "jsch" % "0.1.46" intransitive ())
lazy val sbinary = libraryDependencies += "org.scala-tools.sbinary" %% "sbinary" % "0.4.2"