Skip to content

Commit 7207272

Browse files
committed
Remove code coverage plugins
1 parent d4579e6 commit 7207272

File tree

4 files changed

+1
-20
lines changed

4 files changed

+1
-20
lines changed

.github/workflows/build.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,4 @@ jobs:
1717
with:
1818
java-version: 1.8
1919
- name: Build with Maven
20-
env:
21-
COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
22-
run: mvn -DrepoToken=$COVERALLS_TOKEN clean package cobertura:cobertura coveralls:report
20+
run: mvn clean package

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<div align="center">
99

1010
[![MIT license](http://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](http://opensource.org/licenses/MIT)
11-
[![Coverage](https://coveralls.io/repos/j-easy/easy-rules/badge.svg?style=flat&branch=master&service=github)](https://coveralls.io/github/j-easy/easy-rules?branch=master)
1211
[![Build Status](https://github.com/j-easy/easy-rules/workflows/Java%20CI/badge.svg)](https://github.com/j-easy/easy-rules/actions)
1312
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.jeasy/easy-rules-core/badge.svg?style=flat)](http://search.maven.org/#artifactdetails|org.jeasy|easy-rules-core|4.0.0|)
1413
[![Javadoc](https://www.javadoc.io/badge/org.jeasy/easy-rules-core.svg)](http://www.javadoc.io/doc/org.jeasy/easy-rules-core)

easy-rules-core/pom.xml

-9
Original file line numberDiff line numberDiff line change
@@ -78,15 +78,6 @@
7878

7979
<build>
8080
<plugins>
81-
<plugin>
82-
<groupId>org.codehaus.mojo</groupId>
83-
<artifactId>cobertura-maven-plugin</artifactId>
84-
<version>${maven-cobertura-plugin.version}</version>
85-
<configuration>
86-
<format>xml</format>
87-
<maxmem>256m</maxmem>
88-
</configuration>
89-
</plugin>
9081
<plugin>
9182
<groupId>com.mycila</groupId>
9283
<artifactId>license-maven-plugin</artifactId>

pom.xml

-7
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@
3636
<system-rules.version>1.19.0</system-rules.version>
3737
<slf4j.version>1.7.30</slf4j.version>
3838
<jackson.version>2.11.0</jackson.version>
39-
<maven-cobertura-plugin.version>2.7</maven-cobertura-plugin.version>
40-
<maven-coveralls-plugin.version>4.3.0</maven-coveralls-plugin.version>
4139
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
4240
<maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
4341
<maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
@@ -148,11 +146,6 @@
148146
</compilerArgs>
149147
</configuration>
150148
</plugin>
151-
<plugin>
152-
<groupId>org.eluder.coveralls</groupId>
153-
<artifactId>coveralls-maven-plugin</artifactId>
154-
<version>${maven-coveralls-plugin.version}</version>
155-
</plugin>
156149
<plugin>
157150
<groupId>org.apache.maven.plugins</groupId>
158151
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)