Removed comments for goals that are not public

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113155 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2003-03-19 11:54:15 +00:00
parent ad451d4a16
commit e76a01c773

View File

@ -20,16 +20,13 @@
<j:forEach var="script" items="${scanner.iterator()}">
<j:import inherit="true" file="${script.toString()}"/>
</j:forEach>
<!--
========================================================================
Initialization. Creates objects useful for several goals.
========================================================================
-->
<goal name="cactus:init" description="Creates objects useful for several goals">
<goal name="cactus:init">
<taskdef name="junit"
classname="org.apache.tools.ant.taskdefs.optional.junit.JUnitTask"/>
@ -146,10 +143,8 @@
Generate a web.xml which is the merge betweem the user project web.xml
and the webapp elements needed by Cactus.
========================================================================
-->
<goal name="cactus:merge-webxml"
description="Generate a web.xml which is the merge betweem the user project web.xml and the webapp elements needed by Cactus">
-->
<goal name="cactus:merge-webxml">
<j:set var="warWebXml"
value="${pom.getPluginContext('maven-war-plugin').getVariable('maven.war.webxml')}"/>
@ -181,9 +176,6 @@
file="${maven.cactus.webxml}"/>
</j:otherwise>
</j:choose>
</goal>
@ -192,8 +184,7 @@
Generate an expanded Cactus webapp from a project expanded webapp.
========================================================================
-->
<goal name="cactus:webapp-update" prereqs="cactus:compile"
description="Generate an expanded Cactus webapp from a project expanded webapp">
<goal name="cactus:webapp-update" prereqs="cactus:compile">
<!-- Copy Cactus configuration files -->
<copy todir="${maven.cactus.build.dir}/${pom.artifactId}"
@ -227,7 +218,7 @@
Test initialization.
========================================================================
-->
<goal name="cactus:test-init" description="Test initialization">
<goal name="cactus:test-init">
<path id="cactus.scanner.classpath">
<path refid="maven.dependency.classpath"/>
@ -380,8 +371,7 @@
then when you run maven site it will convert them. Otherwise you must
call cactus:generate.
========================================================================
-->
-->
<goal name="cactus:generate"
description="Generate HTML report">
@ -469,8 +459,7 @@
Goals to register the Cactus test reports should to be included in the
Maven reports and produce the reports.
========================================================================
-->
-->
<goal name="maven-cactus-plugin:register">
<doc:registerReport
name="Cactus Test Results"
@ -479,8 +468,8 @@
</goal>
<goal name="maven-cactus-plugin:report">
<!-- here will be code to generate the reports. Not sure what will happen yet. -->
<!-- here will be code to generate the reports. Not sure what will
happen yet. -->
</goal>
</project>