Skip to content

Commit 51214f9

Browse files
committed
remove jacoco which isn't working
1 parent f967fd1 commit 51214f9

1 file changed

Lines changed: 0 additions & 43 deletions

File tree

pom.xml

Lines changed: 0 additions & 43 deletions
Original file line numberDiff line numberDiff line change
@@ -95,49 +95,6 @@
9595
</archive>
9696
</configuration>
9797
</plugin>
98-
<plugin>
99-
<groupId>org.jacoco</groupId>
100-
<artifactId>jacoco-maven-plugin</artifactId>
101-
<version>0.7.8</version>
102-
<executions>
103-
<!--
104-
Prepares the property pointing to the JaCoCo runtime agent which
105-
is passed as VM argument when Maven the Surefire plugin is executed.
106-
-->
107-
<execution>
108-
<id>pre-unit-test</id>
109-
<goals>
110-
<goal>prepare-agent</goal>
111-
</goals>
112-
<configuration>
113-
<!-- Sets the path to the file which contains the execution data. -->
114-
<destFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</destFile>
115-
<!--
116-
Sets the name of the property containing the settings
117-
for JaCoCo runtime agent.
118-
-->
119-
<propertyName>surefireArgLine</propertyName>
120-
</configuration>
121-
</execution>
122-
<!--
123-
Ensures that the code coverage report for unit tests is created after
124-
unit tests have been run.
125-
-->
126-
<execution>
127-
<id>post-unit-test</id>
128-
<phase>test</phase>
129-
<goals>
130-
<goal>report</goal>
131-
</goals>
132-
<configuration>
133-
<!-- Sets the path to the file which contains the execution data. -->
134-
<dataFile>${project.build.directory}/coverage-reports/jacoco-ut.exec</dataFile>
135-
<!-- Sets the output directory for the code coverage report. -->
136-
<outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
137-
</configuration>
138-
</execution>
139-
</executions>
140-
</plugin>
14198
</plugins>
14299
</build>
143100
</project>

0 commit comments

Comments
 (0)