From: Eric P. <de...@us...> - 2005-06-03 13:58:19
|
dep4b 05/06/03 06:58:13 Modified: . maven.xml Log: Make sure to generate the navigation when generating the entire site Revision Changes Path 1.32 +5 -1 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- maven.xml 29 May 2005 22:27:35 -0000 1.31 +++ maven.xml 3 Jun 2005 13:58:12 -0000 1.32 @@ -122,6 +122,10 @@ <preGoal name="xdoc:jelly-transform"> <attainGoal name="faq"/> </preGoal> + + <preGoal name="multiproject:site"> + <attainGoal name="generate-navigation"/> + </preGoal> <!-- Goal to generate the navigation.xml --> <goal name="generate-navigation"> @@ -129,7 +133,7 @@ <ant:fileScanner var="scanner"> <ant:fileset dir="${basedir}"> <ant:include name="*/project.xml"/> - <ant:exlude name="${basedir}/project.xml"/> + <ant:exclude name="${basedir}/project.xml"/> </ant:fileset> </ant:fileScanner> |