rogerxu / rogerxu.github.io

Roger Xu's Blog
3 stars 2 forks source link

Jacoco #194

Open rogerxu opened 6 years ago

rogerxu commented 6 years ago

Maven

<plugin>
    <groupId>org.jacoco</groupId>
    <artifactId>jacoco-maven-plugin</artifactId>
    <version>0.7.9</version>
    <executions>
        <execution>
            <id>pre-test</id>
            <goals>
                <goal>prepare-agent</goal>
            </goals>
        </execution>
        <execution>
            <id>agent-for-it</id>
            <goals>
                <goal>prepare-agent-integration</goal>
            </goals>
        </execution>
    </executions>
</plugin>