Skip to content
Snippets Groups Projects
Commit 40801e27 authored by Luc Maisonobe's avatar Luc Maisonobe
Browse files

Removed jacoco plugin as I was unable to make it work in multi-modules.

parent e4af767f
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,6 @@ ...@@ -25,7 +25,6 @@
<rugged.maven-bundle-plugin.version>2.5.3</rugged.maven-bundle-plugin.version> <rugged.maven-bundle-plugin.version>2.5.3</rugged.maven-bundle-plugin.version>
<rugged.maven-resources-plugin.version>2.7</rugged.maven-resources-plugin.version> <rugged.maven-resources-plugin.version>2.7</rugged.maven-resources-plugin.version>
<rugged.maven-clean-plugin.version>2.6.1</rugged.maven-clean-plugin.version> <rugged.maven-clean-plugin.version>2.6.1</rugged.maven-clean-plugin.version>
<rugged.jacoco-maven-plugin.version>0.7.2.201409121644</rugged.jacoco-maven-plugin.version>
<rugged.maven-plantuml-plugin.version>7940</rugged.maven-plantuml-plugin.version> <rugged.maven-plantuml-plugin.version>7940</rugged.maven-plantuml-plugin.version>
<rugged.plantuml.version>7999</rugged.plantuml.version> <rugged.plantuml.version>7999</rugged.plantuml.version>
<rugged.maven-site-plugin.version>3.4</rugged.maven-site-plugin.version> <rugged.maven-site-plugin.version>3.4</rugged.maven-site-plugin.version>
...@@ -180,73 +179,6 @@ ...@@ -180,73 +179,6 @@
<artifactId>maven-clean-plugin</artifactId> <artifactId>maven-clean-plugin</artifactId>
<version>${rugged.maven-clean-plugin.version}</version> <version>${rugged.maven-clean-plugin.version}</version>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${rugged.jacoco-maven-plugin.version}</version>
<executions>
<execution>
<id>prepare-agent</id>
<phase>process-test-classes</phase>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>site</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>check</id>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>BUNDLE</element>
<limits>
<limit>
<counter>CLASS</counter>
<value>COVEREDRATIO</value>
<minimum>1.00</minimum>
</limit>
<limit>
<counter>INSTRUCTION</counter>
<value>COVEREDRATIO</value>
<minimum>0.90</minimum>
</limit>
<limit>
<counter>METHOD</counter>
<value>COVEREDRATIO</value>
<minimum>0.95</minimum>
</limit>
<limit>
<counter>BRANCH</counter>
<value>COVEREDRATIO</value>
<minimum>0.85</minimum>
</limit>
<limit>
<counter>COMPLEXITY</counter>
<value>COVEREDRATIO</value>
<minimum>0.85</minimum>
</limit>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>0.90</minimum>
</limit>
</limits>
</rule>
</rules>
<haltOnFailure>false</haltOnFailure>
</configuration>
</execution>
</executions>
</plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId> <artifactId>maven-site-plugin</artifactId>
...@@ -303,11 +235,6 @@ ...@@ -303,11 +235,6 @@
<artifactId>maven-project-info-reports-plugin</artifactId> <artifactId>maven-project-info-reports-plugin</artifactId>
<version>${rugged.maven-project-info-reports-plugin.version}</version> <version>${rugged.maven-project-info-reports-plugin.version}</version>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>${rugged.jacoco-maven-plugin.version}</version>
</plugin>
<plugin> <plugin>
<groupId>org.codehaus.mojo</groupId> <groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId> <artifactId>findbugs-maven-plugin</artifactId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment