Skip to content

Instantly share code, notes, and snippets.

@xlson
Created September 29, 2011 17:31
Show Gist options
  • Save xlson/1251351 to your computer and use it in GitHub Desktop.
Save xlson/1251351 to your computer and use it in GitHub Desktop.
Can't get @field working with gmaven and 1.8
...
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>1.8.0</version>
</dependency>
</dependencies>
<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>1.8.0</version>
</dependency>
<dependency>
<groupId>org.codehaus.gmaven.runtime</groupId>
<artifactId>gmaven-runtime-1.7</artifactId>
<version>1.3</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
<executions>
<execution>
<configuration>
<providerSelection>1.7</providerSelection>
</configuration>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>generateTestStubs</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
...
@jdillon
Copy link

jdillon commented Sep 30, 2011

eclipse is so nice and helpful ;-)

@xlson
Copy link
Author

xlson commented Oct 4, 2011

Always ;) Hopefully going back to IntelliJ next week.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment