aboutsummaryrefslogtreecommitdiff
path: root/bigtop-test-framework
diff options
context:
space:
mode:
authorRoman Shaposhnik <rvs@apache.org>2012-11-02 15:19:22 -0700
committerRoman Shaposhnik <rvs@apache.org>2012-11-02 15:19:22 -0700
commit8ed0da6f315a38dcd01c6f2611f392310fcb0931 (patch)
tree3712f931ac2cdf65bd8b5d9ab18c44c4c2511401 /bigtop-test-framework
parent88fb2d4485cc3289936da374fb7de8d5301487b0 (diff)
BIGTOP-768. Bump the version of Groovy to 1.8
Diffstat (limited to 'bigtop-test-framework')
-rw-r--r--bigtop-test-framework/pom.xml46
1 files changed, 26 insertions, 20 deletions
diff --git a/bigtop-test-framework/pom.xml b/bigtop-test-framework/pom.xml
index e9d39afe..9110302e 100644
--- a/bigtop-test-framework/pom.xml
+++ b/bigtop-test-framework/pom.xml
@@ -33,9 +33,9 @@
<dependencies>
<dependency>
- <groupId>org.codehaus.groovy.maven.runtime</groupId>
- <artifactId>gmaven-runtime-1.6</artifactId>
- <version>1.0</version>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-all</artifactId>
+ <version>${groovy.version}</version>
</dependency>
<dependency>
@@ -66,27 +66,33 @@
<build>
<plugins>
<plugin>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-eclipse-compiler</artifactId>
+ <version>${groovy-eclipse-compiler.version}</version>
+ <extensions>true</extensions>
+ </plugin>
+
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
+ <version>2.3.2</version>
<configuration>
- <source>1.5</source>
- <target>1.5</target>
+ <compilerId>groovy-eclipse-compiler</compilerId>
+ <source>1.6</source>
+ <target>1.6</target>
</configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.groovy.maven</groupId>
- <artifactId>gmaven-plugin</artifactId>
- <version>1.0</version>
- <executions>
- <execution>
- <goals>
- <goal>generateStubs</goal>
- <goal>compile</goal>
- <goal>generateTestStubs</goal>
- <goal>testCompile</goal>
- </goals>
- </execution>
- </executions>
+ <dependencies>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-eclipse-compiler</artifactId>
+ <version>${groovy-eclipse-compiler.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.codehaus.groovy</groupId>
+ <artifactId>groovy-eclipse-batch</artifactId>
+ <version>${groovy.version}-01</version>
+ </dependency>
+ </dependencies>
</plugin>
<plugin>