diff --git a/plugin/xdocs/goals.xml b/plugin/xdocs/goals.xml index d348c0ab..f7e23043 100644 --- a/plugin/xdocs/goals.xml +++ b/plugin/xdocs/goals.xml @@ -67,7 +67,7 @@ plugin:install - Install the plugin in Maven's plugins dir + Build and install the current plugin in ${maven.plugin.dir}. plugin:install-now @@ -79,13 +79,13 @@ plugin:uninstall - Uninstall all versions of the plugin in Maven's plugins dir + Uninstall all versions of the plugin from Maven's plugins dir plugin:uninstall-now Uninstall the plugin from the current Maven instance. - It is also uninstalled into the user's plugin cache and the global Maven installation. + It is also uninstalled from the user's plugin cache and the global Maven installation. @@ -102,6 +102,8 @@ plugin:repository-install-snapshot Install a snapshot build of the plugin to the local repository. + DEPRECATED: use plugin:repository-install with + -SNAPSHOT in the project version for equivalent behaviour. @@ -118,6 +120,8 @@ Deploy a snapshot build of the plugin to the remote repository. This uses the Artifact plugin to do the deployment, so properties need to be set up as per that plugin. + DEPRECATED: use plugin:repository-deploy with + -SNAPSHOT in the project version for equivalent behaviour. diff --git a/plugin/xdocs/index.xml b/plugin/xdocs/index.xml index 6e7a3b97..c1d64d1b 100644 --- a/plugin/xdocs/index.xml +++ b/plugin/xdocs/index.xml @@ -27,7 +27,8 @@

- This plug-in provides ways of working with maven plugins + This plug-in provides means for building, installing + and downloading plugins for Maven.

For more information on the functionality provided by this plugin, diff --git a/plugin/xdocs/properties.xml b/plugin/xdocs/properties.xml index 97f53be5..c9368c40 100644 --- a/plugin/xdocs/properties.xml +++ b/plugin/xdocs/properties.xml @@ -35,11 +35,55 @@ maven.docs.src Yes -

Default value is - ${basedir}/xdocs.

+ Default is ${basedir}/xdocs. + + maven.plugin.dir + Yes + + Where Maven can find it's plugins. + Default is ${maven.home}/plugins. + + + + maven.plugin.user.dir + Yes + + Where Maven can find plugins for this user only. + Default is ${maven.home.local}/plugins. + + + + maven.plugin.unpacked.dir + Yes + + Where Maven expands installed plugins for processing. + Default is ${maven.home.local}/cache. + + + + maven.repo.local + Yes + + The repository on the local machine Maven should use to store + downloaded artifacts (jars etc). + Default is ${maven.home.local}/repository. + + + + maven.repo.remote + Yes + + The repository maven should use to download artifacts + (jars etc) that it can't find in the local repository. + You should set this to one of the + Ibiblio mirrors. + You can also specify multiple repositories, separated by commas. + Default is http://www.ibiblio.org/maven. + +
- \ No newline at end of file +