Skip to content

Instantly share code, notes, and snippets.

@benelog
Created August 28, 2012 10:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benelog/3496884 to your computer and use it in GitHub Desktop.
Save benelog/3496884 to your computer and use it in GitHub Desktop.
Groovy + maven
<!-- Groovy -->
<dependency>
<groupId>org.codehaus.gmaven.runtime</groupId>
<artifactId>gmaven-runtime-1.7</artifactId>
<version>1.4</version>
</dependency>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<meminitial>128m</meminitial>
<maxmem>512m</maxmem>
<source>${java-version}</source>
<target>${java-version}</target>
<encoding>${source.encoding}</encoding>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.7.0-01</version>
</dependency>
</dependencies>
</plugin>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment