From c3a5042f027b90c344eb187d5d01de4e650c132b Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Sun, 5 May 2013 15:42:15 -0400 Subject: [PATCH] drop httpclient dependency, which wasn't actually being used by Ivy --- project/Sbt.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Sbt.scala b/project/Sbt.scala index a67935593..9e23c9395 100644 --- a/project/Sbt.scala +++ b/project/Sbt.scala @@ -77,7 +77,7 @@ object Sbt extends Build /* **** Intermediate-level Modules **** */ // Apache Ivy integration - lazy val ivySub = baseProject(file("ivy"), "Ivy") dependsOn(interfaceSub, launchInterfaceSub, crossSub, logSub % "compile;test->test", ioSub % "compile;test->test", launchSub % "test->test") settings(ivy, jsch, httpclient, testExclusive) + lazy val ivySub = baseProject(file("ivy"), "Ivy") dependsOn(interfaceSub, launchInterfaceSub, crossSub, logSub % "compile;test->test", ioSub % "compile;test->test", launchSub % "test->test") settings(ivy, jsch, testExclusive) // Runner for uniform test interface lazy val testingSub = baseProject(file("testing"), "Testing") dependsOn(ioSub, classpathSub, logSub, launchInterfaceSub, testAgentSub) settings(libraryDependencies += "org.scalatest" % "test-interface" % "1.0-SNAP3") // Testing agent for running tests in a separate process.