smor 2002/07/10 15:53:30
Modified: src/plugins/tasklist plugin.jelly
src/plugins/site plugin.jelly
src/plugins/xdoc plugin.jelly
src/plugins/junit-report plugin.jelly
Log:
Added default goals to junit-report, changelog, activity
Modified site:generate to attain those goals.
Revision Changes Path
1.3 +5 -0 jakarta-turbine-maven/src/plugins/tasklist/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/tasklist/plugin.jelly,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- plugin.jelly 5 Jul 2002 00:51:01 -0000 1.2
+++ plugin.jelly 10 Jul 2002 22:53:29 -0000 1.3
@@ -12,6 +12,11 @@
<classpath refid="maven-classpath"/>
</taskdef>
+ <goal name="tasklist"
+ description="Generate a list of tasks from @task tags in your code">
+ <attainGoal name="tasklist:generate"/>
+ </goal>
+
<goal
name="tasklist:generate">
1.6 +9 -10 jakarta-turbine-maven/src/plugins/site/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/site/plugin.jelly,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- plugin.jelly 9 Jul 2002 23:19:36 -0000 1.5
+++ plugin.jelly 10 Jul 2002 22:53:29 -0000 1.6
@@ -17,16 +17,15 @@
name="site:generate"
description="Generate the web site">
- <attainGoal name="jdepend:generate-report"/>
- <attainGoal name="checkstyle:generate-report"/>
- <attainGoal name="changelog:generate"/>
- <attainGoal name="activity:generate"/>
- <attainGoal name="javadoc:generate"/>
- <attainGoal name="jxr:generate"/>
- <attainGoal name="junit-report:generate"/>
- <attainGoal name="tasklist:generate"/>
- <attainGoal name="xdoc:generate-from-pom"/>
- <attainGoal name="xdoc:transform"/>
+ <attainGoal name="jdepend"/>
+ <attainGoal name="checkstyle"/>
+ <attainGoal name="changelog"/>
+ <attainGoal name="activity"/>
+ <attainGoal name="javadoc"/>
+ <attainGoal name="jxr"/>
+ <attainGoal name="junit-report"/>
+ <attainGoal name="tasklist"/>
+ <attainGoal name="xdoc"/>
</goal>
1.11 +4 -0 jakarta-turbine-maven/src/plugins/xdoc/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/xdoc/plugin.jelly,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- plugin.jelly 5 Jul 2002 21:48:19 -0000 1.10
+++ plugin.jelly 10 Jul 2002 22:53:29 -0000 1.11
@@ -6,6 +6,10 @@
<!-- P R O J E C T D O C U M E N T A T I O N -->
<!-- ================================================================== -->
+ <goal name="xdoc"
+ prereqs="xdoc:generate-from-pom, xdoc:transform"
+ description="Generate html project documentation xdoc sources"/>
+
<taskdef
name="create-xdocs"
classname="org.apache.maven.BaseProjectTask">
1.5 +6 -0 jakarta-turbine-maven/src/plugins/junit-report/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/jakarta-turbine-maven/src/plugins/junit-report/plugin.jelly,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- plugin.jelly 5 Jul 2002 21:48:19 -0000 1.4
+++ plugin.jelly 10 Jul 2002 22:53:29 -0000 1.5
@@ -13,6 +13,12 @@
</taskdef>
<goal
+ name="junit-report"
+ description="Generate a report from the test results">
+ <attainGoal name="junit-report:generate"/>
+ </goal>
+
+ <goal
name="junit-report:generate">
<j:if test="${unitTestSourcesPresent == 'true'}">
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>