|
If this release is the latest, then simply use the groovy prefix to invoke goals, as in:
mvn groovy:<goal> |
Otherwise, use the full plugin identifier to invoke this version:
mvn org.codehaus.groovy.maven:gmaven-plugin:1.0:<goal> |
When configuring projects to use this plugin be sure to define elements in your projects top-level POM's pluginManagement section to bind your project to the required version:
<project>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-mojo</artifactId>
<version>1.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy.maven.runtime</groupId>
<artifactId>gmaven-runtime-1.6</artifactId>
<version>1.0</version>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.groovy.maven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>1.0</version>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|
It is highly recommended that you always bind, via |
The source-code for this release is available for browsing here.
Users who wish to check-out this version can access the release tag with Subversion:
svn co https://svn.codehaus.org/groovy/gmaven/tags/gmaven-1.0 |