Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions core-integration-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,12 @@
<plugin>
<groupId>org.codehaus.gmavenplus</groupId>
<artifactId>gmavenplus-plugin</artifactId>
<version>1.5</version>
<version>1.10.0</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
<goal>compileTests</goal>
</goals>
</execution>
</executions>
Expand All @@ -113,9 +113,14 @@
<version>2.19</version>
<configuration>
<useFile>false</useFile>
<!-- include *.java instead of *.groovy to run groovy tests -->
<dependenciesToScan>
<!-- Run in modules that inherit this so they are supposed to scan this parent module for tests -->
<dependency>${project.groupId}:openstack4j-core-integration-test</dependency>
</dependenciesToScan>
<!-- The tests are inherited so those are class name patterns, not file path patterns -->
<includes>
<include>**/*Spec.java</include>
<include>*Spec</include>
<include>*Test</include>
</includes>
</configuration>
</plugin>
Expand Down