File tree 1 file changed +33
-1
lines changed
1 file changed +33
-1
lines changed Original file line number Diff line number Diff line change 49
49
</dependencies >
50
50
<build >
51
51
<plugins >
52
+ <plugin >
53
+ <groupId >org.jacoco</groupId >
54
+ <artifactId >jacoco-maven-plugin</artifactId >
55
+ <version >0.7.9</version >
56
+ <executions >
57
+ <execution >
58
+ <id >pre-unit-test</id >
59
+ <phase >test-compile</phase >
60
+ <goals >
61
+ <goal >prepare-agent</goal >
62
+ </goals >
63
+ <configuration >
64
+ <destFile >${project.build.directory} /coverage-reports/jacoco-ut.exec</destFile >
65
+ <propertyName >surefireArgLine</propertyName >
66
+ </configuration >
67
+ </execution >
68
+ <execution >
69
+ <id >post-unit-test</id >
70
+ <phase >test</phase >
71
+ <goals >
72
+ <goal >report</goal >
73
+ </goals >
74
+ <configuration >
75
+ <dataFile >${project.build.directory} /coverage-reports/jacoco-ut.exec</dataFile >
76
+ <outputDirectory >${project.reporting.outputDirectory} /jacoco-ut</outputDirectory >
77
+ </configuration >
78
+ </execution >
79
+ </executions >
80
+ </plugin >
52
81
<plugin >
53
82
<groupId >org.eluder.coveralls</groupId >
54
83
<artifactId >coveralls-maven-plugin</artifactId >
55
84
<version >4.3.0</version >
56
85
<configuration >
57
- <repoToken >repoToken</repoToken >
86
+ <repoToken >VoNnKHlm3jV6CDIVG9NxC7Z0LGYrhPgxD</repoToken >
87
+ <jacocoReports >
88
+ <jacocoReport >${project.reporting.outputDirectory} /jacoco-ut/jacoco.xml</jacocoReport >
89
+ </jacocoReports >
58
90
</configuration >
59
91
</plugin >
60
92
</plugins >
You can’t perform that action at this time.
0 commit comments