Title: [980] trunk/core/maven.xml: Created a new goal that will generate the apidocs.
- Revision
- 980
- Author
- foconer
- Date
- 2005-11-30 22:09:36 -0500 (Wed, 30 Nov 2005)
Log Message
Created a new goal that will generate the apidocs. Included this as well in the default.
Modified Paths
Diff
Modified: trunk/core/maven.xml (979 => 980)
--- trunk/core/maven.xml 2005-11-30 22:50:55 UTC (rev 979)
+++ trunk/core/maven.xml 2005-12-01 03:09:36 UTC (rev 980)
@@ -8,7 +8,7 @@
<postGoal name="java:compile">
<attainGoal name="xbean:generate" />
</postGoal>
-
+
<goal name="setclasspath" prereqs="java:compile, test:compile">
<path id="test.classpath">
<pathelement path="${maven.build.dest}"/>
@@ -38,6 +38,12 @@
<goal name="reports:site">
<attainGoal name="site"/>
- </goal>
-
+ </goal>
+
+ <goal name="default" prereqs="jar:install, javadoc:api"/>
+
+ <goal name="javadoc:api">
+ <attainGoal name="javadoc:install"/>
+ </goal>
+
</project>