We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c797b76 commit bbaf478Copy full SHA for bbaf478
pom.xml
@@ -87,9 +87,31 @@
87
<configuration>
88
<excludes>
89
<exclude>*-target/**</exclude>
90
+ <exclude>**/*IntegrationTest.java</exclude>
91
</excludes>
92
</configuration>
93
</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>
115
</plugins>
116
</build>
117
0 commit comments