Skip to content

Commit

Permalink
use parent pom 1.2.0 and setup jacoco report
Browse files Browse the repository at this point in the history
  • Loading branch information
joel-costigliola committed May 5, 2013
1 parent 11c7aba commit a6d6c1e
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions pom.xml
Expand Up @@ -10,7 +10,7 @@
<parent>
<groupId>org.assertj</groupId>
<artifactId>assertj-parent-pom</artifactId>
<version>1.1.0</version>
<version>1.2.0</version>
</parent>

<scm>
Expand Down Expand Up @@ -43,7 +43,7 @@
</dependency>
</dependencies>

<build>
<build>
<plugins>
<plugin>
<groupId>com.mycila.maven-license-plugin</groupId>
Expand Down Expand Up @@ -71,6 +71,18 @@
</execution>
</executions>
</plugin>
<!-- generate jacoco report -->
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<!-- to get jacoco report we need to set argLine in surefire, without this snippet the jacoco argLine is lost -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<argLine>${argLine}</argLine>
</configuration>
</plugin>
</plugins>
</build>

Expand Down

0 comments on commit a6d6c1e

Please sign in to comment.