You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by be...@apache.org on 2010/02/28 18:36:30 UTC

svn commit: r917218 - /maven/ant-tasks/trunk/pom.xml

Author: bentmann
Date: Sun Feb 28 17:36:29 2010
New Revision: 917218

URL: http://svn.apache.org/viewvc?rev=917218&view=rev
Log:
o Removed dependency on backport-util-concurrent, the Ant Tasks already require Java 1.5 due to their dependency on Maven 2.2.x so we can just use the original java.util.concurrent package, thereby reducing overall JAR size by ~20%

Modified:
    maven/ant-tasks/trunk/pom.xml

Modified: maven/ant-tasks/trunk/pom.xml
URL: http://svn.apache.org/viewvc/maven/ant-tasks/trunk/pom.xml?rev=917218&r1=917217&r2=917218&view=diff
==============================================================================
--- maven/ant-tasks/trunk/pom.xml (original)
+++ maven/ant-tasks/trunk/pom.xml Sun Feb 28 17:36:29 2010
@@ -256,6 +256,7 @@
                   <exclude>xml-apis:xml-apis</exclude>
                   <exclude>org.apache.ant:ant</exclude>
                   <exclude>org.apache.ant:ant-launcher</exclude>
+                  <exclude>backport-util-concurrent:backport-util-concurrent</exclude>
                 </excludes>
               </artifactSet>
               <relocations>
@@ -267,6 +268,10 @@
                     <exclude>org.codehaus.plexus.util.xml.pull.*</exclude>
                   </excludes>
                 </relocation>
+                <relocation>
+                  <pattern>edu.emory.mathcs.backport.java.util.concurrent</pattern>
+                  <shadedPattern>java.util.concurrent</shadedPattern>
+                </relocation>
               </relocations>
             </configuration>
           </execution>