You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/01/04 18:07:24 UTC

[commons-jci] 01/02: Drop Cobertura; use JaCoCo

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-jci.git

commit 58c0a8beedb7db708662dbd778de076d8bf4d404
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Wed Jan 4 13:04:04 2023 -0500

    Drop Cobertura; use JaCoCo
---
 pom.xml | 22 +---------------------
 1 file changed, 1 insertion(+), 21 deletions(-)

diff --git a/pom.xml b/pom.xml
index 395971b..c9d0c7a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -107,18 +107,6 @@
                     </systemPropertyVariables>
                 </configuration>
             </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>cobertura-maven-plugin</artifactId>
-                <version>2.2</version>
-                <executions>
-                    <execution>
-                        <goals>
-                            <goal>clean</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
             <plugin>
                 <artifactId>maven-assembly-plugin</artifactId>
                 <configuration>
@@ -219,15 +207,6 @@
                     <aggregate>true</aggregate>
                 </configuration>
             </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>cobertura-maven-plugin</artifactId>
-                <version>${commons.cobertura.version}</version>
-                <configuration>
-                    <aggregate>true</aggregate>
-                    <check/>
-                </configuration>
-            </plugin>
         </plugins>
     </reporting>
 
@@ -235,6 +214,7 @@
         <maven-site-plugin.skip>false</maven-site-plugin.skip>
         <maven.compiler.source>1.8</maven.compiler.source>
         <maven.compiler.target>1.8</maven.compiler.target>
+        <jacoco.skip>${env.JACOCO_SKIP}</jacoco.skip>
         <commons.componentid>jci</commons.componentid>
         <commons.module.name>org.apache.commons.jci2</commons.module.name>
         <commons.jira.id>JCI</commons.jira.id>