We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 497e55c commit 92d597fCopy full SHA for 92d597f
pom.xml
@@ -65,6 +65,36 @@
65
</dependency>
66
</dependencies>
67
68
+ <build>
69
+ <sourceDirectory>src/main/java</sourceDirectory>
70
+ <plugins>
71
+ <plugin>
72
+ <groupId>org.jacoco</groupId>
73
+ <artifactId>jacoco-maven-plugin</artifactId>
74
+ <version>0.8.6</version>
75
+ <executions>
76
+ <execution>
77
+ <goals>
78
+ <goal>prepare-agent</goal>
79
+ </goals>
80
+ </execution>
81
82
+ <id>report</id>
83
+ <phase>test</phase>
84
85
+ <goal>report</goal>
86
87
88
+ </executions>
89
+ </plugin>
90
91
+ <groupId>org.apache.maven.plugins</groupId>
92
+ <artifactId>maven-compiler-plugin</artifactId>
93
+ <version>3.8.1</version>
94
95
+ </plugins>
96
+ </build>
97
+
98
<profiles>
99
<profile>
100
<id>release</id>
0 commit comments