You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by sl...@apache.org on 2008/10/17 15:12:25 UTC

svn commit: r705601 - /tuscany/branches/sca-java-1.3.3/pom.xml

Author: slaws
Date: Fri Oct 17 06:12:25 2008
New Revision: 705601

URL: http://svn.apache.org/viewvc?rev=705601&view=rev
Log:
TUSCANY-2647 - Force the maven ant plugin to use ant version 1.6.5

Modified:
    tuscany/branches/sca-java-1.3.3/pom.xml

Modified: tuscany/branches/sca-java-1.3.3/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-java-1.3.3/pom.xml?rev=705601&r1=705600&r2=705601&view=diff
==============================================================================
--- tuscany/branches/sca-java-1.3.3/pom.xml (original)
+++ tuscany/branches/sca-java-1.3.3/pom.xml Fri Oct 17 06:12:25 2008
@@ -413,6 +413,38 @@
                         <jdk>1.5</jdk>
                     </configuration>
                 </plugin>
+
+                <!-- ant plugin global configuration -->
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-antrun-plugin</artifactId>
+                    <version>1.1</version>
+
+                    <dependencies>
+                        <dependency>
+                            <groupId>ant</groupId>
+                            <artifactId>ant</artifactId>
+                            <version>1.6.5</version>
+                            <exclusions>
+                              <exclusion>
+                                <groupId>org.apache.ant</groupId>
+                                <artifactId>ant</artifactId>
+                              </exclusion>
+                            </exclusions>
+                        </dependency>
+                        <dependency>
+                            <groupId>ant</groupId>
+                            <artifactId>ant-trax</artifactId>
+                            <version>1.6.5</version>
+                            <exclusions>
+                              <exclusion>
+                                <groupId>org.apache.ant</groupId>
+                                <artifactId>ant-trax</artifactId>
+                              </exclusion>
+                            </exclusions>
+                        </dependency>
+                    </dependencies>
+                </plugin>
             </plugins>
         </pluginManagement>
     </build>