Friday, September 18, 2009

Installing Maven Help Plugin



Just including the following in the maven settings.xml and then running any help command like "mvn help:describe -Dplugin=help" should install the help plugin if it is not already installed.

#########################################

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-help-plugin</artifactId>
<version>2.1</version>
</plugin>

#########################################

No comments: