You are viewing a plain text version of this content. The canonical link for it is here.
Posted to easyant-commits@incubator.apache.org by jl...@apache.org on 2012/11/14 19:53:16 UTC

svn commit: r1409328 - /incubator/easyant/plugins/trunk/antunit/module.ivy

Author: jlboudart
Date: Wed Nov 14 19:53:15 2012
New Revision: 1409328

URL: http://svn.apache.org/viewvc?rev=1409328&view=rev
Log:
Exclude properly ant and antlauncher from ant-unit

Modified:
    incubator/easyant/plugins/trunk/antunit/module.ivy

Modified: incubator/easyant/plugins/trunk/antunit/module.ivy
URL: http://svn.apache.org/viewvc/incubator/easyant/plugins/trunk/antunit/module.ivy?rev=1409328&r1=1409327&r2=1409328&view=diff
==============================================================================
--- incubator/easyant/plugins/trunk/antunit/module.ivy (original)
+++ incubator/easyant/plugins/trunk/antunit/module.ivy Wed Nov 14 19:53:15 2012
@@ -16,7 +16,7 @@
 -->
 <ivy-module version="2.0" xmlns:ea="http://www.easyant.org">
     <info organisation="org.apache.easyant.plugins" module="antunit" revision="0.9">
-        <extends organisation="org.apache.easyant.plugins" module="parent-plugin" revision="0.1" />
+        <extends organisation="org.apache.easyant.plugins" module="parent-plugin" revision="0.1" parent="parent.ivy"/>
         <description>This module provides antunit test features.</description>
         <ea:build organisation="org.apache.easyant.buildtypes" module="build-std-ant-plugin" revision="0.1" />
     </info>
@@ -33,7 +33,8 @@
     <dependencies>
         <dependency org="org.apache.ant" name="ant-antunit" rev="1.2" conf="default->default">
             <!--already loaded by easyant -->
-            <exclude org="org.apache.ant" module="*"/>
+            <exclude org="org.apache.ant" module="ant"/>
+            <exclude org="org.apache.ant" module="ant-launcher"/>
         </dependency>
     </dependencies>
 </ivy-module>