|
177 | 177 | <groupId>org.eclipse.jetty</groupId> |
178 | 178 | <artifactId>jetty-maven-plugin</artifactId> |
179 | 179 | <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> |
200 | 218 | </plugins> |
201 | 219 | <finalName>sampleapp</finalName> |
202 | 220 | </build> |
|
235 | 253 | <ignoreIdentifiers>true</ignoreIdentifiers> |
236 | 254 | </configuration> |
237 | 255 | </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> |
258 | 256 | <plugin> |
259 | 257 | <groupId>org.codehaus.mojo</groupId> |
260 | 258 | <artifactId>findbugs-maven-plugin</artifactId> |
|
0 commit comments