Created
August 11, 2011 13:45
-
-
Save Riduidel/1139693 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!-- A mettre dans les propriétés --> | |
| <groovy.version>1.8.0</groovy.version> | |
| <gmaven.provider.version>1.7</gmaven.provider.versio | |
| <!-- A mettre dans son build/plugins --> | |
| <plugin> | |
| <groupId>org.codehaus.gmaven</groupId> | |
| <artifactId>gmaven-plugin</artifactId> | |
| <version>1.3</version> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.codehaus.groovy</groupId> | |
| <artifactId>groovy-all</artifactId> | |
| <version>${groovy.version}</version> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.codehaus.gmaven.runtime</groupId> | |
| <artifactId>gmaven-runtime-${gmaven.provider.version}</artifactId> | |
| <version>1.3</version> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>org.codehaus.groovy</groupId> | |
| <artifactId>groovy-all</artifactId> | |
| </exclusion> | |
| </exclusions> | |
| </dependency> | |
| </dependencies> | |
| <executions> | |
| <execution> | |
| <configuration> | |
| <providerSelection>${gmaven.provider.version}</providerSelection> | |
| </configuration> | |
| <goals> | |
| <goal>generateStubs</goal> | |
| <goal>compile</goal> | |
| <goal>generateTestStubs</goal> | |
| <goal>testCompile</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment