You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by de...@apache.org on 2008/07/11 20:07:57 UTC

svn commit: r676039 - /commons/proper/commons-build-plugin/trunk/pom.xml

Author: dennisl
Date: Fri Jul 11 11:07:56 2008
New Revision: 676039

URL: http://svn.apache.org/viewvc?rev=676039&view=rev
Log:
[COMMONSSITE-35] Unable to use commons:jira-page on Windows

o This was due to a bug in Ant. Upgraded Ant to version 1.7.1.

Modified:
    commons/proper/commons-build-plugin/trunk/pom.xml

Modified: commons/proper/commons-build-plugin/trunk/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/commons-build-plugin/trunk/pom.xml?rev=676039&r1=676038&r2=676039&view=diff
==============================================================================
--- commons/proper/commons-build-plugin/trunk/pom.xml (original)
+++ commons/proper/commons-build-plugin/trunk/pom.xml Fri Jul 11 11:07:56 2008
@@ -59,18 +59,32 @@
             <groupId>org.apache.maven</groupId>
             <artifactId>maven-script-ant</artifactId>
             <version>2.0.8</version>
+            <!-- We need to exclude this artifact's dependency on Ant, -->
+            <!-- because it has a different groupId that the version of Ant -->
+            <!-- we want to use. -->
+            <exclusions>
+              <exclusion>
+                <groupId>ant</groupId>
+                <artifactId>ant</artifactId>
+              </exclusion>
+              <exclusion>
+                <groupId>ant</groupId>
+                <artifactId>ant-launcher</artifactId>
+              </exclusion>
+            </exclusions>
         </dependency>
 
-        <!-- Ant 1.7.0 required for the "loadresource" Task -->
+        <!-- Ant 1.7.0+ required for the "loadresource" Task -->
+        <!-- Ant 1.7.1 required for COMMONSSITE-35 -->
         <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant</artifactId>
-            <version>1.7.0</version>
+            <version>1.7.1</version>
         </dependency>
         <dependency>
             <groupId>org.apache.ant</groupId>
             <artifactId>ant-launcher</artifactId>
-            <version>1.7.0</version>
+            <version>1.7.1</version>
         </dependency>
     </dependencies>