Skip to content

Commit

Permalink
coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
bdon committed Mar 26, 2023
1 parent 48685e0 commit 1e7ebf6
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tiles/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -159,4 +159,32 @@
</plugin>
</plugins>
</build>

<profiles>
<profile>
<id>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<executions>
<execution>
<id>prepare-agent</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>

0 comments on commit 1e7ebf6

Please sign in to comment.