From: Siegfried G. <wd...@us...> - 2002-12-11 14:41:16
|
wdsgoe 02/12/11 06:41:15 Modified: . maven.xml Log: Provided a valid default goal and added a "plugins:clean" goal to remove the temporary files Revision Changes Path 1.7 +13 -1 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- maven.xml 7 Sep 2002 11:49:19 -0000 1.6 +++ maven.xml 11 Dec 2002 14:41:15 -0000 1.7 @@ -1,4 +1,4 @@ -<jj:project default="plugin" +<jj:project default="plugins:site" xmlns:j="jelly:core" xmlns:jj="jelly:jeez" xmlns:ant="jelly:ant" @@ -6,6 +6,18 @@ xmlns:x="jelly:xml" xmlns="dummy" xmlns:m="maven"> + + <jj:goal name="plugins:clean"> + + <reactor:execute + basedir="${basedir}" + glob="*/project.xml" + goals="clean" + banner="Cleaning For" + ignoreFailures="true" + /> + + </jj:goal> <jj:goal name="plugins:site"> |