[jboss-cvs] JBossAS SVN: r88836 - trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed May 13 17:42:51 EDT 2009


Author: pgier
Date: 2009-05-13 17:42:51 -0400 (Wed, 13 May 2009)
New Revision: 88836

Modified:
   trunk/build/build-distr.xml
Log:
[JBBUILD-519] Use maven ant tasks to copy thirdparty jars directly from local maven repo.

Modified: trunk/build/build-distr.xml
===================================================================
--- trunk/build/build-distr.xml	2009-05-13 21:41:26 UTC (rev 88835)
+++ trunk/build/build-distr.xml	2009-05-13 21:42:51 UTC (rev 88836)
@@ -126,8 +126,6 @@
       <fileset dir="${_module.output}">
         <include name="ejb3.deployer/**"/>
       </fileset>
-      <fileset dir="${jboss.jboss.ejb3.endpoint.deployer.lib}" includes="*.jar"
-	  excludes="*-sources.jar, *-javadoc.jar"/>
     </copy>
 
   </target>
@@ -1861,6 +1859,13 @@
       </fileset>
     </chmod>
    	
+    <copy todir="${install.server}/all/deployers" filtering="no">
+      <fileset file="${org.jboss.ejb3:jboss-ejb3-endpoint-deployer:jar}"/>
+      <mapper classpathref="maven-ant-tasks.classpath"
+              classname="org.apache.maven.artifact.ant.VersionMapper"
+              from="${pom.dependencies.versions}" to="flatten" />
+    </copy>
+
     <unzip dest="${install.server}/all/deployers">
       <fileset file="${org.jboss.webbeans.integration:webbeans-ri-int-deployer:zip}"/>
     </unzip>




More information about the jboss-cvs-commits mailing list