From: Andy J. <and...@us...> - 2004-10-22 18:39:35
|
andy_jefferson 04/10/22 11:39:29 Modified: . maven.xml Added: . navigation.jelly Log: Reinstated old method of navigation generation Revision Changes Path 1.25 +14 -0 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.24 retrieving revision 1.25 diff -u -r1.24 -r1.25 --- maven.xml 1 Oct 2004 22:38:14 -0000 1.24 +++ maven.xml 22 Oct 2004 18:39:28 -0000 1.25 @@ -107,4 +107,18 @@ <preGoal name="xdoc:jelly-transform"> <attainGoal name="faq"/> </preGoal> + + <!-- Goal to generate the navigation.xml --> + <goal name="generate-navigation"> + <ant:echo>${basedir}/project.xml</ant:echo> + <ant:fileScanner var="scanner"> + <ant:fileset dir="${basedir}"> + <ant:include name="*/project.xml"/> + <ant:exlude name="${basedir}/project.xml"/> + </ant:fileset> + </ant:fileScanner> + + <ant:echo>Generating the navigation file...</ant:echo> + <j:include uri="navigation.jelly"/> + </goal> </project> 1.3 +18 -14 maven-plugins/navigation.jelly |