Skip to content

Commit 124fd33

Browse files
committed
Remove use of coveralls-maven-plugin (sonarqube.com covers this)
1 parent 9433c78 commit 124fd33

File tree

3 files changed

+0
-42
lines changed

3 files changed

+0
-42
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ install:
1717
- mvn install -DskipTests=true -Dmaven.javadoc.skip=true -B -V -e
1818

1919
after_success:
20-
- mvn clean test jacoco:report coveralls:report
2120
- mvn clean org.jacoco:jacoco-maven-plugin:prepare-agent package sonar:sonar -Dsonar.host.url=https://sonarqube.com -Dsonar.login=$SONAR_TOKEN
2221
- bash update-ghpages.sh
2322

README.md

-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
# Design patterns implemented in Java
66

77
[![Build status](https://travis-ci.org/iluwatar/java-design-patterns.svg?branch=master)](https://travis-ci.org/iluwatar/java-design-patterns)
8-
[![Coverage Status](https://coveralls.io/repos/iluwatar/java-design-patterns/badge.svg?branch=master)](https://coveralls.io/r/iluwatar/java-design-patterns?branch=master)
98
[![License MIT](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/iluwatar/java-design-patterns/master/LICENSE.md)
109
[![Join the chat at https://gitter.im/iluwatar/java-design-patterns](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/iluwatar/java-design-patterns?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1110
[![Quality Gate](https://sonarqube.com/api/badges/gate?key=com.iluwatar%3Ajava-design-patterns)](https://sonarqube.com/dashboard/index/com.iluwatar%3Ajava-design-patterns)

pom.xml

-40
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@
3535
<h2.version>1.4.190</h2.version>
3636
<junit.version>4.12</junit.version>
3737
<compiler.version>3.0</compiler.version>
38-
<coveralls.version>4.0.0</coveralls.version>
3938
<jacoco.version>0.7.2.201409121644</jacoco.version>
4039
<commons-dbcp.version>1.4</commons-dbcp.version>
4140
<camel.version>2.16.1</camel.version>
@@ -320,29 +319,10 @@
320319
<target>1.8</target>
321320
</configuration>
322321
</plugin>
323-
<plugin>
324-
<groupId>org.eluder.coveralls</groupId>
325-
<artifactId>coveralls-maven-plugin</artifactId>
326-
<version>${coveralls.version}</version>
327-
<configuration>
328-
<repoToken>jb6wYzxkVvjolD6qOWpzWdcWBzYk2fAmF</repoToken>
329-
</configuration>
330-
</plugin>
331322
<plugin>
332323
<groupId>org.jacoco</groupId>
333324
<artifactId>jacoco-maven-plugin</artifactId>
334325
<version>${jacoco.version}</version>
335-
<!-- The following exclude configuration was added because error occurred
336-
when executing "mvn clean test jacoco:report coveralls:report" -->
337-
<!-- [ERROR] Failed to execute goal org.eluder.coveralls:coveralls-maven-plugin:3.1.0:report
338-
(default-cli) on project java-design-patterns: I/O operation failed: No source
339-
found for domainapp/dom/modules/simple/QSimpleObject.java -> [Help 1] -->
340-
<configuration>
341-
<excludes>
342-
<exclude>domainapp/dom/modules/simple/QSimpleObject.class</exclude>
343-
<exclude>**com.steadystate*</exclude>
344-
</excludes>
345-
</configuration>
346326
<executions>
347327
<execution>
348328
<id>prepare-agent</id>
@@ -378,26 +358,6 @@
378358
</execution>
379359
</executions>
380360
</plugin>
381-
382-
<plugin>
383-
<groupId>org.jacoco</groupId>
384-
<artifactId>jacoco-maven-plugin</artifactId>
385-
<version>0.7.5.201505241946</version>
386-
<executions>
387-
<execution>
388-
<goals>
389-
<goal>prepare-agent</goal>
390-
</goals>
391-
</execution>
392-
<execution>
393-
<id>report</id>
394-
<phase>prepare-package</phase>
395-
<goals>
396-
<goal>report</goal>
397-
</goals>
398-
</execution>
399-
</executions>
400-
</plugin>
401361
<plugin>
402362
<groupId>org.apache.maven.plugins</groupId>
403363
<artifactId>maven-surefire-plugin</artifactId>

0 commit comments

Comments
 (0)