Skip to content

Commit 92d597f

Browse files
committed
Codecov
1 parent 497e55c commit 92d597f

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

pom.xml

+30
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,36 @@
6565
</dependency>
6666
</dependencies>
6767

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+
<execution>
82+
<id>report</id>
83+
<phase>test</phase>
84+
<goals>
85+
<goal>report</goal>
86+
</goals>
87+
</execution>
88+
</executions>
89+
</plugin>
90+
<plugin>
91+
<groupId>org.apache.maven.plugins</groupId>
92+
<artifactId>maven-compiler-plugin</artifactId>
93+
<version>3.8.1</version>
94+
</plugin>
95+
</plugins>
96+
</build>
97+
6898
<profiles>
6999
<profile>
70100
<id>release</id>

0 commit comments

Comments
 (0)