Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active July 6, 2017 12:03
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 iyengarajay/3bb13378fb73562fa9a715d56c76f042 to your computer and use it in GitHub Desktop.
Save iyengarajay/3bb13378fb73562fa9a715d56c76f042 to your computer and use it in GitHub Desktop.
...
<properties>
<spock.version>1.1-groovy-2.4</spock.version>
</properties>
...
<dependencies>
...
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-spring</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<plugins>
...
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<compilerId>groovy-eclipse-compiler</compilerId>
<source>1.8</source>
<target>1.8</target>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-compiler</artifactId>
<version>2.9.2-01</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-eclipse-batch</artifactId>
<version>2.4.3-01</version>
</dependency>
</dependencies>
</plugin>
</plugins>
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment