Skip to content

Commit

Permalink
[#146] Enable jacoco code coverage checks
Browse files Browse the repository at this point in the history
  • Loading branch information
susanw1 committed Nov 21, 2023
1 parent 0cb0499 commit 45bdc88
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
9 changes: 9 additions & 0 deletions clients/java-client-lib/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,13 @@
<type>pom</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
9 changes: 9 additions & 0 deletions model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,13 @@
<type>pom</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
9 changes: 9 additions & 0 deletions receivers/jvm/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,13 @@
<type>pom</type>
</dependency>
</dependencies>

<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>

0 comments on commit 45bdc88

Please sign in to comment.