Skip to content

Commit 86515c8

Browse files
GiannisPapadakisGiannisPapadakis
authored andcommitted
Run unit tests on integration-test phase with surefire
1 parent 5a4427d commit 86515c8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

pom.xml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,31 @@
164164
</dependency>
165165
</dependencies>
166166
</plugin>
167+
<plugin>
168+
<groupId>org.apache.maven.plugins</groupId>
169+
<artifactId>maven-surefire-plugin</artifactId>
170+
<version>2.18.1</version>
171+
<dependencies>
172+
<dependency>
173+
<groupId>org.apache.maven.surefire</groupId>
174+
<artifactId>surefire-junit47</artifactId>
175+
<version>2.18.1</version>
176+
</dependency>
177+
</dependencies>
178+
<executions>
179+
<execution>
180+
<goals>
181+
<goal>test</goal>
182+
</goals>
183+
<phase>integration-test</phase>
184+
<configuration>
185+
<includes>
186+
<include>**/*Test.java</include>
187+
</includes>
188+
</configuration>
189+
</execution>
190+
</executions>
191+
</plugin>
167192
</plugins>
168193
</build>
169194
</project>

0 commit comments

Comments
 (0)