Skip to content

Commit 6aec341

Browse files
authored
Merge pull request #4 from majusko/feature/add-test-coverage
Added test coverage library.
2 parents d4bc91a + b889ea2 commit 6aec341

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

pom.xml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,33 @@
5656
<groupId>org.springframework.boot</groupId>
5757
<artifactId>spring-boot-maven-plugin</artifactId>
5858
</plugin>
59+
60+
<plugin>
61+
<groupId>org.jacoco</groupId>
62+
<artifactId>jacoco-maven-plugin</artifactId>
63+
<version>0.8.3</version>
64+
<configuration>
65+
<excludes>
66+
<exclude>**/*Properties.*</exclude>
67+
<exclude>**/*Configuration.*</exclude>
68+
<exclude>**/mock/**/*</exclude>
69+
</excludes>
70+
</configuration>
71+
<executions>
72+
<execution>
73+
<goals>
74+
<goal>prepare-agent</goal>
75+
</goals>
76+
</execution>
77+
<execution>
78+
<id>report</id>
79+
<phase>test</phase>
80+
<goals>
81+
<goal>report</goal>
82+
</goals>
83+
</execution>
84+
</executions>
85+
</plugin>
5986
</plugins>
6087
</build>
6188

0 commit comments

Comments
 (0)