|
|
@ -21,7 +21,7 @@
|
|
|
|
visit https://github.com/groovy/GMavenPlus/wiki -->
|
|
|
|
visit https://github.com/groovy/GMavenPlus/wiki -->
|
|
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
|
|
<groupId>org.codehaus.gmavenplus</groupId>
|
|
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
|
|
|
<artifactId>gmavenplus-plugin</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
<version>1.5</version>
|
|
|
|
<executions>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goals>
|
|
|
@ -35,7 +35,7 @@
|
|
|
|
<!-- Only required if names of spec classes don't match default Surefire patterns (`*Test` etc.) -->
|
|
|
|
<!-- Only required if names of spec classes don't match default Surefire patterns (`*Test` etc.) -->
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>2.6</version>
|
|
|
|
<version>2.18.1</version>
|
|
|
|
<configuration>
|
|
|
|
<configuration>
|
|
|
|
<useFile>false</useFile>
|
|
|
|
<useFile>false</useFile>
|
|
|
|
<includes>
|
|
|
|
<includes>
|
|
|
@ -46,7 +46,7 @@
|
|
|
|
<!-- Only required for spock-example build -->
|
|
|
|
<!-- Only required for spock-example build -->
|
|
|
|
<plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
|
|
<version>2.5</version>
|
|
|
|
<version>2.8.2</version>
|
|
|
|
<configuration>
|
|
|
|
<configuration>
|
|
|
|
<skip>true</skip>
|
|
|
|
<skip>true</skip>
|
|
|
|
</configuration>
|
|
|
|
</configuration>
|
|
|
@ -59,25 +59,25 @@
|
|
|
|
<dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.spockframework</groupId>
|
|
|
|
<groupId>org.spockframework</groupId>
|
|
|
|
<artifactId>spock-core</artifactId>
|
|
|
|
<artifactId>spock-core</artifactId>
|
|
|
|
<version>1.0-groovy-2.4</version>
|
|
|
|
<version>1.1-groovy-2.4-rc-3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<!-- Optional dependencies for using Spock -->
|
|
|
|
<!-- Optional dependencies for using Spock -->
|
|
|
|
<dependency> <!-- use a specific Groovy version rather than the one specified by spock-core -->
|
|
|
|
<dependency> <!-- use a specific Groovy version rather than the one specified by spock-core -->
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
<artifactId>groovy-all</artifactId>
|
|
|
|
<version>2.4.1</version>
|
|
|
|
<version>2.4.7</version>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
|
|
|
<dependency> <!-- enables mocking of classes (in addition to interfaces) -->
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib-nodep</artifactId>
|
|
|
|
<artifactId>cglib-nodep</artifactId>
|
|
|
|
<version>3.1</version>
|
|
|
|
<version>3.2.4</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- enables mocking of classes without default constructor (together with CGLIB) -->
|
|
|
|
<dependency> <!-- enables mocking of classes without default constructor (together with CGLIB) -->
|
|
|
|
<groupId>org.objenesis</groupId>
|
|
|
|
<groupId>org.objenesis</groupId>
|
|
|
|
<artifactId>objenesis</artifactId>
|
|
|
|
<artifactId>objenesis</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependency>
|
|
|
|
<dependency> <!-- only required if Hamcrest matchers are used -->
|
|
|
|
<dependency> <!-- only required if Hamcrest matchers are used -->
|
|
|
|