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 ma...@apache.org on 2007/10/05 21:52:13 UTC

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

Author: maartenc
Date: Fri Oct  5 14:52:09 2007
New Revision: 582407

URL: http://svn.apache.org/viewvc?rev=582407&view=rev
Log:
Use module-wide exclude syntax to exclude junit library from our non-testing configurations.

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?rev=582407&r1=582406&r2=582407&view=diff
==============================================================================
--- incubator/ivy/core/trunk/ivy.xml (original)
+++ incubator/ivy/core/trunk/ivy.xml Fri Oct  5 14:52:09 2007
@@ -37,19 +37,17 @@
 	</publications>
 	<dependencies>
 	    <dependency org="ant" name="ant" rev="1.6" conf="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="commons-httpclient" name="commons-httpclient" rev="3.0" conf="default,httpclient->runtime,master" />
+		<dependency org="commons-cli" name="commons-cli" rev="1.0" conf="default,standalone->runtime,master" />
 		<dependency org="oro" name="oro" rev="2.0.8" conf="default,oro->default"/>
 		<dependency org="commons-vfs" name="commons-vfs" rev="1.0" conf="default,vfs->default" />
 		<dependency org="jsch" name="jsch" rev="0.1.25" conf="default,sftp->default" />
+
 		<!-- Test dependencies -->
 	    <dependency org="ant" name="ant-launcher" rev="1.6" conf="test->default"/>
 	    <dependency org="ant" name="ant-junit" rev="1.6" conf="test->default"/>
 		<dependency org="junit" name="junit" rev="3.8.2" conf="test->default" />
 		<dependency org="commons-lang" name="commons-lang" rev="[1.0,3.0[" conf="test->default" />
+		<exclude org="junit" module="junit" conf="core,default" />
 	</dependencies>
 </ivy-module>