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.
1 parent f5f0d9f commit 29449c2Copy full SHA for 29449c2
pom.xml
@@ -16,6 +16,7 @@
16
<properties>
17
<java.version>1.8</java.version>
18
</properties>
19
+
20
<dependencies>
21
<dependency>
22
<groupId>org.springframework.boot</groupId>
@@ -39,6 +40,24 @@
39
40
41
<build>
42
<plugins>
43
+ <plugin>
44
+ <groupId>org.jacoco</groupId>
45
+ <artifactId>jacoco-maven-plugin</artifactId>
46
+ <executions>
47
+ <execution>
48
+ <goals>
49
+ <goal>prepare-agent</goal>
50
+ </goals>
51
+ </execution>
52
53
+ <id>report</id>
54
+ <phase>test</phase>
55
56
+ <goal>report</goal>
57
58
59
+ </executions>
60
+ </plugin>
61
<plugin>
62
63
<artifactId>spring-boot-maven-plugin</artifactId>
0 commit comments