fix comment

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113521 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
vmassol 2003-06-19 14:01:51 +00:00
parent 928c29e70f
commit 9f51cc2e43

View File

@ -4,8 +4,7 @@
xmlns:license="license"
xmlns:util="jelly:util"
xmlns:ant="jelly:ant"
xmlns:artifact="artifact"
>
xmlns:artifact="artifact">
<!--==================================================================-->
<!-- Default goal : Builds a war file -->
@ -161,13 +160,10 @@
<artifact:install
artifact="${maven.war.build.dir}/${maven.war.final.name}"
type="war"
project="${pom}"
/>
project="${pom}"/>
</goal>
<!--==================================================================-->
<!-- Install the snapshot version of the war in the local repository -->
<!--==================================================================-->
@ -178,40 +174,37 @@
<artifact:install-snapshot
artifact="${maven.war.build.dir}/${maven.war.final.name}"
type="war"
project="${pom}"
/>
project="${pom}"/>
</goal>
<!--==================================================================-->
<!-- Deploys the war to the local repository -->
<!-- Deploys the war to the remote repository -->
<!--==================================================================-->
<goal name="war:deploy"
prereqs="war:war"
description="Deploys the war to the remote repository">
<artifact:deploy
artifact="${maven.war.build.dir}/${maven.war.final.name}"
type="war"
project="${pom}"
/>
project="${pom}"/>
</goal>
<!--==================================================================-->
<!-- Deploys the snapshoot of the war to the remote repository -->
<!-- Deploys the snapshot of the war to the remote repository -->
<!--==================================================================-->
<goal name="war:deploy-snapshot"
prereqs="war:war"
description="Deploys the snapshot version of the war to remote repository">
<artifact:deploy-snapshot
artifact="${maven.war.build.dir}/${maven.war.final.name}"
type="war"
project="${pom}"
/>
project="${pom}"/>
</goal>
<!--==================================================================-->
<!-- Special no-op goal which can be used by other plugin which need -->
@ -219,4 +212,5 @@
<!-- temporary, until we get explicit plugin dependencies. -->
<!--==================================================================-->
<goal name="war:load"/>
</project>