Skip to content

Commit

Permalink
Downgrade to groovy 1.7 due to incompatible class change from 1.6.9 -…
Browse files Browse the repository at this point in the history
…> 1.8.0
  • Loading branch information
benfortuna committed Apr 29, 2011
1 parent 8fb5712 commit e0eb8d9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions pom.xml
Expand Up @@ -96,6 +96,37 @@
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>gmaven-plugin</artifactId>
<version>${gmaven.version}</version>
<configuration>
<providerSelection>1.7</providerSelection>
</configuration>
<dependencies>
<dependency>
<groupId>org.codehaus.gmaven.runtime</groupId>
<artifactId>gmaven-runtime-1.7</artifactId>
<version>${gmaven.version}</version>
<exclusions>
<exclusion>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
</dependency>
</dependencies>
<executions>
<execution>
<goals>
<goal>generateStubs</goal>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
Expand All @@ -114,10 +145,12 @@
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>${groovy.version}</version>
</dependency>
<dependency>
<groupId>org.spockframework</groupId>
<artifactId>spock-core</artifactId>
<version>0.5-groovy-1.7</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand Down Expand Up @@ -161,4 +194,9 @@
</plugin>
</plugins>
</reporting>

<properties>
<groovy.version>1.7.10</groovy.version>
<gmaven.version>1.3</gmaven.version>
</properties>
</project>

0 comments on commit e0eb8d9

Please sign in to comment.