Maven Build Magic Plugin

This plugin enables integration between projects using ant/buildmagic and projects using maven.


http://www.jboss.org/maven-buildmagic-thirdparty-plugin/

Sample usage(from pom.xml of hornetq project):


% mvn initialize -Dintegrated-build

It will generate jars and entries in libraries.ent like the below:


<!-- org/jboss -->

<property name="org.jboss.root"value="${project.thirdparty}/org/jboss"/>

<property name="org.jboss.lib"value="${org.jboss.root}/lib/"/>

<property name="org.jboss.resources"value="${org.jboss.root}/resources/"/>
<path id="org.jboss.classpath">

   <pathelement path="${org.jboss.lib}/jboss-common-core.jar"/>

</path>

你可能感兴趣的:(maven)