File tree Expand file tree Collapse file tree 1 file changed +9
-12
lines changed
Expand file tree Collapse file tree 1 file changed +9
-12
lines changed Original file line number Diff line number Diff line change 1414
1515 <properties >
1616
17- <surefireArgLine />
18-
1917 <!-- SKIP QA -->
2018 <bt .qa.skip>true</bt .qa.skip>
2119 <checkstyle .skip>${bt.qa.skip} </checkstyle .skip>
7270 </dependencyManagement >
7371
7472 <build >
75-
7673 <plugins >
77-
7874 <!-- Code coverage. -->
7975 <plugin >
8076 <groupId >org.jacoco</groupId >
8177 <artifactId >jacoco-maven-plugin</artifactId >
8278 <version >0.8.2</version >
8379 <executions >
84- <!-- Prepare jacco agent. -->
80+ <!-- Prepare Jacoco agent. -->
8581 <execution >
8682 <id >jacoco-agent</id >
8783 <goals >
8884 <goal >prepare-agent</goal >
8985 </goals >
90- <configuration >
91- <propertyName >surefireArgLine</propertyName >
92- </configuration >
86+ </execution >
87+ <!-- Jacoco Coverage Report -->
88+ <execution >
89+ <id >post-unit-test</id >
90+ <phase >prepare-package</phase >
91+ <goals >
92+ <goal >report</goal >
93+ </goals >
9394 </execution >
9495 </executions >
9596 </plugin >
99100 <groupId >org.apache.maven.plugins</groupId >
100101 <artifactId >maven-surefire-plugin</artifactId >
101102 <version >2.22.1</version >
102- <configuration >
103- <!-- Arg set by jacoco. -->
104- <argLine >${surefireArgLine} </argLine >
105- </configuration >
106103 </plugin >
107104
108105 <!-- Verify: Check the code style. -->
You can’t perform that action at this time.
0 commit comments