Skip to content
Permalink
Browse files

Resolve cobertura-maven-plugin class issue; resolves #313. (#314)

- Exclude slf4j binding logback-classic
(mojohaus/cobertura-maven-plugin#6 (comment))
  • Loading branch information...
ruebot authored and jrwiebe committed Mar 23, 2019
1 parent 5a649e7 commit 850419014f6a1f014cea9ba316d537fafc9d497a
Showing with 13 additions and 13 deletions.
  1. +13 −13 pom.xml
26 pom.xml
@@ -201,19 +201,6 @@
</execution>
</executions>
</plugin>
<!-- for codecov.io -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<configuration>
<formats>
<format>html</format>
<format>xml</format>
</formats>
<check />
</configuration>
</plugin>
<!-- for mycila -->
<plugin>
<groupId>com.mycila</groupId>
@@ -687,6 +674,19 @@
<version>3.2</version>
</dependency>
<!--END issue #113-->
<!-- for codecov.io -->
<dependency>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>2.7</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>

<developers>

0 comments on commit 8504190

Please sign in to comment.
You can’t perform that action at this time.