Skip to content

Commit c5ec7ad

Browse files
committed
Remove jacoco-maven-plugin from build configuration
Eliminated the JaCoCo plugin configuration from the POM file. This change removes automated code coverage reporting steps and associated configurations.
1 parent b6aa464 commit c5ec7ad

File tree

1 file changed

+0
-33
lines changed

1 file changed

+0
-33
lines changed

nifi-tdf-processors/pom.xml

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -97,37 +97,4 @@
9797
<scope>test</scope>
9898
</dependency>
9999
</dependencies>
100-
101-
<build>
102-
<plugins>
103-
<plugin>
104-
<groupId>org.jacoco</groupId>
105-
<artifactId>jacoco-maven-plugin</artifactId>
106-
<executions>
107-
<execution>
108-
<id>prepare-agent</id>
109-
<goals>
110-
<goal>prepare-agent</goal>
111-
</goals>
112-
<configuration>
113-
<destFile>${project.parent.basedir}/target/jacoco.exec</destFile>
114-
</configuration>
115-
</execution>
116-
<execution>
117-
<id>report</id>
118-
<phase>test</phase>
119-
<goals>
120-
<goal>report</goal>
121-
</goals>
122-
<configuration>
123-
<dataFile>${project.parent.basedir}/target/jacoco.exec</dataFile>
124-
<formats>
125-
<format>XML</format>
126-
</formats>
127-
</configuration>
128-
</execution>
129-
</executions>
130-
</plugin>
131-
</plugins>
132-
</build>
133100
</project>

0 commit comments

Comments
 (0)