Skip to content

Commit 868e733

Browse files
committed
Get to compiling without errors
1 parent 395f4d6 commit 868e733

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -289,6 +289,20 @@
289289
</resource>
290290
</resources>
291291
<plugins>
292+
<!-- gmaven is inherited from the parent-pom. Set it to never run. -->
293+
<plugin>
294+
<groupId>org.codehaus.gmaven</groupId>
295+
<artifactId>gmaven-plugin</artifactId>
296+
<executions>
297+
<execution>
298+
<phase>none</phase>
299+
</execution>
300+
<execution>
301+
<id>test-in-groovy</id>
302+
<phase>none</phase>
303+
</execution>
304+
</executions>
305+
</plugin>
292306
<plugin>
293307
<groupId>org.codehaus.gmavenplus</groupId>
294308
<artifactId>gmavenplus-plugin</artifactId>
@@ -298,10 +312,14 @@
298312
<goals>
299313
<goal>addTestSources</goal>
300314
<goal>generateTestStubs</goal>
315+
<goal>addTestStubSources</goal>
301316
<goal>compileTests</goal>
302317
</goals>
303318
</execution>
304319
</executions>
320+
<configuration>
321+
<testStubsOutputDirectory>${project.build.directory}/generated-test-sources/groovy-stubs</testStubsOutputDirectory>
322+
</configuration>
305323
</plugin>
306324
<plugin>
307325
<groupId>org.jenkins-ci.tools</groupId>

0 commit comments

Comments
 (0)