This commit is contained in:
Kent Yao 2018-03-20 14:17:03 +08:00
parent 9338b60a76
commit feedf971a3
2 changed files with 26 additions and 20 deletions

4
.gitignore vendored
View File

@ -24,4 +24,6 @@ build/apache-maven*
build/scala* build/scala*
target/ target/
logs/ logs/
out/ out/
hs_err_pid*

42
pom.xml
View File

@ -368,6 +368,29 @@
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.0</version>
<configuration>
<destFile>${project.build.directory}/codecov-reports</destFile>
</configuration>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- disable surefire --> <!-- disable surefire -->
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
@ -397,25 +420,6 @@
</executions> </executions>
</plugin> </plugin>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.5.8.201207111220</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins> </plugins>
</build> </build>