doco for goals and properties

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115767 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
brett
2004-07-11 00:57:59 +00:00
parent a0b1be3851
commit e562abf78c
3 changed files with 228 additions and 177 deletions

View File

@@ -56,7 +56,7 @@
</goal>
<goal name="plugin:install" prereqs="plugin:plugin"
description="Install the plugin jar, prepare Maven to expand it locally and clear caches">
description="Install the plugin jar, prepare Maven to expand it locally next run">
<plugin:uninstall name="${pom.artifactId}" />
<!-- Don't clear the cache. Maven will do this if we happened to clean up an additional version -->
@@ -268,7 +268,7 @@
-->
<!-- test a plugin -->
<goal name="plugin:test">
<goal name="plugin:test" description="Run a plugin's test project">
<u:available file="${basedir}/src/plugin-test/project.xml">
<maven:maven
descriptor="${basedir}/src/plugin-test/project.xml"
@@ -277,7 +277,8 @@
</u:available>
</goal>
<goal name="plugin:repository-install" prereqs="plugin:plugin">
<goal name="plugin:repository-install" prereqs="plugin:plugin"
description="install a plugin into the local repository">
<artifact:install
artifact="${maven.build.dir}/${maven.final.name}.jar"
type="plugin"
@@ -285,7 +286,8 @@
/>
</goal>
<goal name="plugin:repository-install-snapshot" prereqs="plugin:plugin">
<goal name="plugin:repository-install-snapshot" prereqs="plugin:plugin"
description="install a plugin snapshot into the local repository">
<artifact:install-snapshot
artifact="${maven.build.dir}/${maven.final.name}.jar"
type="plugin"
@@ -293,7 +295,8 @@
/>
</goal>
<goal name="plugin:repository-deploy" prereqs="plugin:plugin">
<goal name="plugin:repository-deploy" prereqs="plugin:plugin"
description="deploy a plugin into the local repository">
<artifact:deploy
artifact="${maven.build.dir}/${maven.final.name}.jar"
type="plugin"
@@ -301,7 +304,8 @@
/>
</goal>
<goal name="plugin:repository-deploy-snapshot" prereqs="plugin:plugin">
<goal name="plugin:repository-deploy-snapshot" prereqs="plugin:plugin"
description="deploy a plugin snapshot into the local repository">
<artifact:deploy-snapshot
artifact="${maven.build.dir}/${maven.final.name}.jar"
type="plugin"
@@ -365,3 +369,4 @@
</define:taglib>
</project>