Created
May 26, 2018 15:37
-
-
Save michaelajr/cf4220cad70db9bafb01ff5bb90648cf to your computer and use it in GitHub Desktop.
Maven For Pipelining, Part 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Run IT test with code coverage --> | |
<profile> | |
<id>integration-test</id> | |
<activation> | |
<file> | |
<exists>${basedir}/src/test</exists> | |
</file> | |
</activation> | |
<properties> | |
<itAgent></itAgent> | |
</properties> | |
<build> | |
<pluginManagement> | |
<plugins> | |
<!-- Code Coverage --> | |
<plugin> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
<configuration> | |
<excludes> | |
<exclude>${sonar.coverage.exclusions}</exclude> | |
</excludes> | |
</configuration> | |
<executions> | |
<!-- Before running integration tests --> | |
<execution> | |
<id>preIT</id> | |
<phase>pre-integration-test</phase> | |
<goals> | |
<goal>prepare-agent-integration</goal> | |
</goals> | |
<configuration> | |
<skip>${skipIntegrationTests}</skip> | |
<destFile>${project.build.directory}/jacoco-it.exec</destFile> | |
<propertyName>itAgent</propertyName> | |
</configuration> | |
</execution> | |
<!-- After running integration tests --> | |
<execution> | |
<id>postIT</id> | |
<phase>post-integration-test</phase> | |
<goals> | |
<goal>report-integration</goal> | |
</goals> | |
<configuration> | |
<skip>${skipIntegrationTests}</skip> | |
<destFile>${project.build.directory}/jacoco-it.exec</destFile> | |
</configuration> | |
</execution> | |
</executions> | |
</plugin> | |
<!-- Use FailSafe to run integration tests --> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
<configuration> | |
<argLine>@{itAgent} ${jvmArgs}</argLine> | |
<skipTests>${skipIntegrationTests}</skipTests> | |
</configuration> | |
<executions> | |
<execution> | |
<goals> | |
<goal>integration-test</goal> | |
<goal>verify</goal> | |
</goals> | |
</execution> | |
</executions> | |
</plugin> | |
</plugins> | |
</pluginManagement> | |
<!-- Use in lifecycle --> | |
<plugins> | |
<plugin> | |
<groupId>org.jacoco</groupId> | |
<artifactId>jacoco-maven-plugin</artifactId> | |
</plugin> | |
<plugin> | |
<groupId>org.apache.maven.plugins</groupId> | |
<artifactId>maven-failsafe-plugin</artifactId> | |
</plugin> | |
</plugins> | |
</build> | |
</profile> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://medium.com/eonian-technologies/maven-for-pipelining-part-1-8b850d10a7ee