File tree Expand file tree Collapse file tree 1 file changed +46
-1
lines changed Expand file tree Collapse file tree 1 file changed +46
-1
lines changed Original file line number Diff line number Diff line change 263263 </dependencies >
264264 </dependencyManagement >
265265
266+ <build >
267+ <finalName >diff-check</finalName >
268+ <plugins >
269+ <plugin >
270+ <groupId >org.jacoco</groupId >
271+ <artifactId >jacoco-maven-plugin</artifactId >
272+ <version >0.8.10</version >
273+ <configuration >
274+ <excludes >
275+ <exclude >**/Main.class</exclude >
276+ </excludes >
277+ </configuration >
278+ <executions >
279+ <execution >
280+ <id >pre-test</id >
281+ <goals >
282+ <goal >prepare-agent</goal >
283+ </goals >
284+ </execution >
285+ <execution >
286+ <id >post-test</id >
287+ <phase >test</phase >
288+ <goals >
289+ <goal >report</goal >
290+ </goals >
291+ <configuration >
292+ <outputDirectory >${project.reporting.outputDirectory} /jacoco</outputDirectory >
293+ </configuration >
294+ </execution >
295+ </executions >
296+ </plugin >
297+ <plugin >
298+ <groupId >org.eluder.coveralls</groupId >
299+ <artifactId >coveralls-maven-plugin</artifactId >
300+ <version >4.3.0</version >
301+ <configuration >
302+ <repoToken >moSVSFee4dHqr39ng3JNyPbC2W3HDTSuA</repoToken >
303+ <jacocoReports >
304+ <jacocoReport >diff-core/target/site/jacoco/jacoco.xml</jacocoReport >
305+ </jacocoReports >
306+ </configuration >
307+ </plugin >
308+ </plugins >
309+ </build >
310+
266311 <modules >
267312 <module >diff-core</module >
268313 <module >diff-checkstyle</module >
269314 <module >diff-pmd</module >
270315 <module >diff-jacoco-maven-plugin</module >
271- </modules >
316+ </modules >
272317
273318</project >
You can’t perform that action at this time.
0 commit comments