Skip to content

Commit

Permalink
excluded applicable packages from test code coverages.
Browse files Browse the repository at this point in the history
  • Loading branch information
jas34 committed Jul 11, 2021
1 parent f48cede commit 47909fd
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -219,11 +219,24 @@
<groupId>org.eluder.coveralls</groupId>
<artifactId>coveralls-maven-plugin</artifactId>
<version>4.3.0</version>
<configuration>
</configuration>
</plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.7.9</version>
<configuration>
<excludes>
<exclude>**/MySQLPersistenceModule.class</exclude>
<exclude>**/dao/mysql/**</exclude>
<exclude>**/config/**</exclude>
<exclude>**/metadata/**</exclude>
<exclude>**/run/**</exclude>
<exclude>**/utils/**</exclude>
<exclude>**/resources/**</exclude>
</excludes>
</configuration>
<executions>
<execution>
<id>prepare-agent</id>
Expand Down

0 comments on commit 47909fd

Please sign in to comment.