jdillon 2003/08/13 04:55:59
Modified: . maven.xml
Log:
o Added helper goals: modules:rebuild and rebuild, which basically clean then
perform the default build
Revision Changes Path
1.8 +14 -1 incubator-geronimo/maven.xml
Index: maven.xml
===================================================================
RCS file: /home/cvs/incubator-geronimo/maven.xml,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- maven.xml 13 Aug 2003 08:57:00 -0000 1.7
+++ maven.xml 13 Aug 2003 11:55:59 -0000 1.8
@@ -57,6 +57,11 @@
<attainGoal name="modules:reactor"/>
</goal>
+ <goal name="modules:rebuild">
+ <j:set var="goals" value="clean, jar:install"/>
+ <attainGoal name="modules:reactor"/>
+ </goal>
+
<goal name="modules:site">
<j:set var="goals" value="site"/>
<attainGoal name="modules:reactor"/>
@@ -70,5 +75,13 @@
<preGoal name="clean">
<attainGoal name="modules:clean"/>
</preGoal>
+
+ <goal name="build">
+ <attainGoal name="modules:build"/>
+ </goal>
+
+ <goal name="rebuild">
+ <attainGoal name="modules:rebuild"/>
+ </goal>
</project>