We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4bc91a + b889ea2 commit 6aec341Copy full SHA for 6aec341
pom.xml
@@ -56,6 +56,33 @@
56
<groupId>org.springframework.boot</groupId>
57
<artifactId>spring-boot-maven-plugin</artifactId>
58
</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
78
+ <id>report</id>
79
+ <phase>test</phase>
80
81
+ <goal>report</goal>
82
83
84
+ </executions>
85
+ </plugin>
86
</plugins>
87
</build>
88
0 commit comments