Despite the existence of the maven-antrun-plugin, they don't mesh perfectly together. One issue is getting the built artifact into your local Maven repository.
Here's one technique: once the Ant build is complete, reach into the target directory and copy the artifact into your repo while taking care to roll the path and version.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
..... | |
<parent> | |
<groupId>org.ryancutter</groupId> | |
<artifactId>myparentproject</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
</parent> | |
<artifactId>myartifact</artifactId> | |
<name>This is my Ant-built artifact</name> | |
<packaging>pom</packaging> | |
<build> | |
<finalName>myartifact</finalName> | |
<plugins> | |
<plugin> | |
<artifactId>maven-antrun-plugin</artifactId> | |
<executions> | |
<execution> | |
<phase>compile</phase> | |
<configuration> | |
<target> | |
<ant antfile="build.xml" target="build" /> | |
<echo message="Moving artifact to local maven repo" /> | |
<copy file="target/myartifact.jar" tofile="${settings.localRepository}/org/ryancutter/myparentproject/myartifact/${version}/myartifact-${version}.jar" /> | |
</target> | |
</configuration> | |
<goals> | |
<goal>run</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</build> | |
..... |