From a1c54bfb592e56a094b64e1fc6a8aea6096a4d50 Mon Sep 17 00:00:00 2001 From: Eugene Yokota Date: Tue, 29 Jul 2014 22:06:05 -0400 Subject: [PATCH] Updates internal Ivy to 2.3.0-sbt-fac2aaab6f982c4424b47e6b190190bef50a6f59 for exclude rule perf --- notes/0.13.6.md | 1 + project/Util.scala | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/notes/0.13.6.md b/notes/0.13.6.md index e11841fdf..5e2c02bf8 100644 --- a/notes/0.13.6.md +++ b/notes/0.13.6.md @@ -63,6 +63,7 @@ - Selects the first test fingerprint for a test name for forked tests. [#1450][1450] by [@pvlugter][@pvlugter] - Allows default auto plugins to be disabled. [#1451][1451] by [@jsuereth][@jsuereth] - Allows keys defined inside `build.sbt` to be used from sbt shell. [#1059][1059]/[#1456][1456] +- Updates internal Ivy instance to cache the results of dependency exclusion rules. by [@eed3si9n][@eed3si9n] ### Bug fixes diff --git a/project/Util.scala b/project/Util.scala index 3f01b51c9..0d21158ee 100644 --- a/project/Util.scala +++ b/project/Util.scala @@ -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.apache.ivy" % "ivy" % "2.3.0") + lazy val ivy = lib("org.scala-sbt.ivy" % "ivy" % "2.3.0-sbt-fac2aaab6f982c4424b47e6b190190bef50a6f59") 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"