Skip to content

Commit bbaf478

Browse files
author
Ben Romberg
committed
move integration-tests to maven integration-test phase
1 parent c797b76 commit bbaf478

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

pom.xml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,31 @@
8787
<configuration>
8888
<excludes>
8989
<exclude>*-target/**</exclude>
90+
<exclude>**/*IntegrationTest.java</exclude>
9091
</excludes>
9192
</configuration>
9293
</plugin>
94+
<plugin>
95+
<groupId>org.apache.maven.plugins</groupId>
96+
<artifactId>maven-failsafe-plugin</artifactId>
97+
<version>2.14.1</version>
98+
<executions>
99+
<execution>
100+
<goals>
101+
<goal>integration-test</goal>
102+
<goal>verify</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
<configuration>
107+
<excludes>
108+
<exclude>*-target/**</exclude>
109+
</excludes>
110+
<includes>
111+
<include>**/*IntegrationTest.java</include>
112+
</includes>
113+
</configuration>
114+
</plugin>
93115
</plugins>
94116
</build>
95117

0 commit comments

Comments
 (0)