blob: d48ae0e0e8e3192d5bbe94e9b179a2163e6b802b [file] [log] [blame]
<project default="all">
<target name="clean">
<exec executable="mvn" failonerror="true">
<arg line="-f pom-new-plugin.xml clean" />
</exec>
<exec executable="mvn" failonerror="true">
<arg line="-f pom-old-plugin.xml clean" />
</exec>
</target>
<target name="install">
<exec executable="mvn" failonerror="true">
<arg line="-f pom-new-plugin.xml install" />
</exec>
<exec executable="mvn" failonerror="true">
<arg line="-f pom-old-plugin.xml install" />
</exec>
</target>
<target name="all">
<exec executable="mvn" failonerror="true">
<arg line="-f pom-new-plugin.xml clean install" />
</exec>
<exec executable="mvn" failonerror="true">
<arg line="-f pom-old-plugin.xml clean install" />
</exec>
</target>
</project>