You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ivy-commits@incubator.apache.org by gs...@apache.org on 2007/06/12 06:31:38 UTC

svn commit: r546392 - /incubator/ivy/core/trunk/ivy.xml

Author: gscokart
Date: Mon Jun 11 23:31:37 2007
New Revision: 546392

URL: http://svn.apache.org/viewvc?view=rev&rev=546392
Log:
try to remove junit dep from our default dependencies

Modified:
    incubator/ivy/core/trunk/ivy.xml

Modified: incubator/ivy/core/trunk/ivy.xml
URL: http://svn.apache.org/viewvc/incubator/ivy/core/trunk/ivy.xml?view=diff&rev=546392&r1=546391&r2=546392
==============================================================================
--- incubator/ivy/core/trunk/ivy.xml (original)
+++ incubator/ivy/core/trunk/ivy.xml Mon Jun 11 23:31:37 2007
@@ -38,11 +38,16 @@
 	</publications>
 	<dependencies>
 	    <dependency org="ant" name="ant" rev="1.6.5" conf="default"/>
-		<dependency org="commons-httpclient" name="commons-httpclient" rev="3.0" conf="default,httpclient->default" />
-		<dependency org="commons-cli" name="commons-cli" rev="1.0" conf="default,standalone->default" />
+		<dependency org="commons-httpclient" name="commons-httpclient" rev="3.0" conf="default,httpclient->runtime,master">
+			<exclude org="junit" name="junit"/>
+		</dependency>
+		<dependency org="commons-cli" name="commons-cli" rev="1.0" conf="default,standalone->runtime,master">
+			<exclude org="junit" name="junit"/>
+		</dependency>
 		<dependency org="oro" name="oro" rev="2.0.8" conf="default,oro->default"/>
 		<dependency org="commons-vfs" name="commons-vfs" rev="20060920" conf="vfs->default;default,webdav->webdav" />
 		<dependency org="jsch" name="jsch" rev="0.1.25" conf="default,sftp->default" />
+		<!-- Test depdendencies -->
 	    <dependency org="ant" name="ant-launcher" rev="1.6.5" conf="test->default"/>
 		<dependency org="junit" name="junit" rev="3.8.2" conf="test->default" />
 	</dependencies>