Jacoco Extras

Additional Jacoco mojos

License

License

Categories

Categories

Maven Build Tools JaCoCo Application Testing & Monitoring Code Coverage
GroupId

GroupId

de.dentrassi.maven
ArtifactId

ArtifactId

jacoco-extras
Last Version

Last Version

0.1.6
Release Date

Release Date

Type

Type

maven-plugin
Description

Description

Jacoco Extras
Additional Jacoco mojos
Project URL

Project URL

https://github.com/ctron/jacoco-extras
Source Code Management

Source Code Management

https://github.com/ctron/jacoco-extras

Download jacoco-extras

How to add to project

<plugin>
    <groupId>de.dentrassi.maven</groupId>
    <artifactId>jacoco-extras</artifactId>
    <version>0.1.6</version>
</plugin>

Dependencies

compile (6)

Group / Artifact Type Version
org.apache.maven : maven-model jar 3.2.5
org.apache.maven : maven-core jar 3.2.5
org.apache.maven : maven-plugin-api jar 3.2.5
org.apache.maven : maven-artifact jar 3.2.5
org.jacoco : org.jacoco.report jar 0.8.4
commons-collections : commons-collections jar 3.2.1

provided (1)

Group / Artifact Type Version
org.apache.maven.plugin-tools : maven-plugin-annotations jar 3.4

test (1)

Group / Artifact Type Version
junit : junit jar 4.11

Project Modules

There are no modules declared in this project.

Jacoco extras plugin Build status Maven Central

This is a Maven Plugin which allows to convert jacoco execution data into a simple XML report. This is required for services like https://codecov.io which work on XML data instead of Jacoco's binary execution data.

However Jacoco generates reports only for classes which are actually in the project or requires you to set up a full aggregated report project, which requires dependencies to all modules.

This plugin converts the execution data for a module including all dependencies of the module automatically.

Usage

Simply add the follow to your Maven project:

<plugin>
  <groupId>de.dentrassi.maven</groupId>
  <artifactId>jacoco-extras</artifactId>
  <version><!-- current version --></version>
  <executions>
    <execution>
      <goals>
        <goal>xml</goal>
      </goals>
    </execution>
  </executions>
</plugin>

For more information about how to use this plugin see the documentation.

License

This plugin is open source and licensed under the EPL. See also license.html.

Versions

Version
0.1.6
0.1.5
0.1.4
0.1.3
0.1.2
0.1.1
0.1.0
0.0.1