Skip to content

Instantly share code, notes, and snippets.

@padcom
Last active October 2, 2015 14:28
Show Gist options
  • Save padcom/2259872 to your computer and use it in GitHub Desktop.
Save padcom/2259872 to your computer and use it in GitHub Desktop.
Adding groovy-eclipse to Maven project
<...>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.8.6</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerId>groovy-eclipse-compiler</compilerId>
<verbose>false</verbose>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.7.0-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.0.4-04</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
<...>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment