Skip to content

Commit 19f6ff8

Browse files
authored
Update pom.xml
1 parent 8c33dd8 commit 19f6ff8

1 file changed

Lines changed: 38 additions & 40 deletions

File tree

pom.xml

Lines changed: 38 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -177,26 +177,44 @@
177177
<groupId>org.eclipse.jetty</groupId>
178178
<artifactId>jetty-maven-plugin</artifactId>
179179
<version>9.2.3.v20140905</version>
180-
</plugin>
181-
182-
<plugin>
183-
<groupId>org.apache.maven.plugins</groupId>
184-
<artifactId>maven-surefire-plugin</artifactId>
185-
<version>2.19.1</version>
186-
<configuration>
187-
<parallel>methods</parallel>
188-
<threadCount>10</threadCount>
189-
<includes>
190-
<include>**/Test*.java</include>
191-
<include>**/Test.java</include>
192-
<include>**/TestCase.java</include>
193-
</includes>
194-
<excludes>
195-
<exclude>**/*Abstract*Test.java</exclude>
196-
</excludes>
197-
</configuration>
198-
</plugin>
199-
180+
</plugin>
181+
<plugin>
182+
<groupId>org.apache.maven.plugins</groupId>
183+
<artifactId>maven-surefire-plugin</artifactId>
184+
<version>2.19.1</version>
185+
<configuration>
186+
<parallel>methods</parallel>
187+
<threadCount>10</threadCount>
188+
<includes>
189+
<include>**/Test*.java</include>
190+
<include>**/Test.java</include>
191+
<include>**/TestCase.java</include>
192+
</includes>
193+
<excludes>
194+
<exclude>**/*Abstract*Test.java</exclude>
195+
</excludes>
196+
</configuration>
197+
</plugin>
198+
<plugin>
199+
<groupId>org.jacoco</groupId>
200+
<artifactId>jacoco-maven-plugin</artifactId>
201+
<version>0.8.6</version>
202+
<extensions>true</extensions>
203+
<executions>
204+
<execution>
205+
<goals>
206+
<goal>prepare-agent</goal>
207+
</goals>
208+
</execution>
209+
<execution>
210+
<id>report</id>
211+
<phase>test</phase>
212+
<goals>
213+
<goal>report</goal>
214+
</goals>
215+
</execution>
216+
</executions>
217+
</plugin>
200218
</plugins>
201219
<finalName>sampleapp</finalName>
202220
</build>
@@ -235,26 +253,6 @@
235253
<ignoreIdentifiers>true</ignoreIdentifiers>
236254
</configuration>
237255
</plugin>
238-
<plugin>
239-
<groupId>org.jacoco</groupId>
240-
<artifactId>jacoco-maven-plugin</artifactId>
241-
<version>0.8.2</version>
242-
<extensions>true</extensions>
243-
<executions>
244-
<execution>
245-
<goals>
246-
<goal>prepare-agent</goal>
247-
</goals>
248-
</execution>
249-
<execution>
250-
<id>report</id>
251-
<phase>test</phase>
252-
<goals>
253-
<goal>report</goal>
254-
</goals>
255-
</execution>
256-
</executions>
257-
</plugin>
258256
<plugin>
259257
<groupId>org.codehaus.mojo</groupId>
260258
<artifactId>findbugs-maven-plugin</artifactId>

0 commit comments

Comments
 (0)