A maven.xml file with a custom goal for cutting math releases. Does snapshot resolution prior to cutting release.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141072 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark R. Diggory 2004-01-29 00:14:09 +00:00
parent dda3ec944a
commit 214a7aa4fc
1 changed files with 16 additions and 0 deletions

16
maven.xml Normal file
View File

@ -0,0 +1,16 @@
<project xmlns:deploy="deploy">
<goal name="cut-math-release">
<attainGoal name="convert-snapshots" />
<attainGoal name="dist" />
</goal>
<preGoal name="dist">
<attainGoal name="ant" />
</preGoal>
<preGoal name="dist:build-bin">
<deploy:copy-deps todir="${maven.build.dir}/${maven.final.name}/bin/${maven.final.name}" />
</preGoal>
</project>