File tree 1 file changed +32
-1
lines changed
1 file changed +32
-1
lines changed Original file line number Diff line number Diff line change 66
66
<version .puppycrawl>10.21.2</version .puppycrawl>
67
67
<version .spotbugs.plugin>4.9.1.0</version .spotbugs.plugin>
68
68
<version .pmd.plugin>3.26.0</version .pmd.plugin>
69
+ <version .jacoco.plugin>0.8.12</version .jacoco.plugin>
69
70
</properties >
70
71
71
72
<organization >
299
300
</configuration >
300
301
</plugin >
301
302
303
+ <plugin >
304
+ <groupId >org.jacoco</groupId >
305
+ <artifactId >jacoco-maven-plugin</artifactId >
306
+ <version >${version.jacoco.plugin} </version >
307
+ <executions >
308
+ <execution >
309
+ <goals >
310
+ <goal >prepare-agent</goal >
311
+ </goals >
312
+ </execution >
313
+
314
+ <execution >
315
+ <id >report</id >
316
+ <phase >test</phase >
317
+ <goals >
318
+ <goal >report</goal >
319
+ </goals >
320
+ <configuration >
321
+ <outputDirectory >${project.build.directory} /jacoco</outputDirectory >
322
+ </configuration >
323
+ </execution >
324
+ </executions >
325
+ <configuration >
326
+ <excludes >
327
+ <exclude >org/jgroups/raft/demos/*.class</exclude >
328
+ <exclude >org/jgroups/raft/client/*.class</exclude >
329
+ </excludes >
330
+ </configuration >
331
+ </plugin >
332
+
302
333
<plugin >
303
334
<groupId >org.sonatype.plugins</groupId >
304
335
<artifactId >nexus-staging-maven-plugin</artifactId >
440
471
<usedefaultlisteners >false</usedefaultlisteners >
441
472
<listener >${testNGListeners} </listener >
442
473
</properties >
443
- <argLine >${jgroups.tests.jvmargs} -Djdk.attach.allowAttachSelf=true</argLine >
474
+ <argLine >${argLine} ${ jgroups.tests.jvmargs} -Djdk.attach.allowAttachSelf=true</argLine >
444
475
<!-- Use TCP for plugin <-> fork JVM communication -->
445
476
<forkNode implementation =" org.apache.maven.plugin.surefire.extensions.SurefireForkNodeFactory" />
446
477
<!-- Disable modular classpath -->
You can’t perform that action at this time.
0 commit comments