This is an automated email from the ASF dual-hosted git repository. solomax pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openmeetings.git
The following commit(s) were added to refs/heads/master by this push:
new 6803700 [OPENMEETINGS-2042] another attempt to fix coverage
6803700 is described below
commit 6803700f39b706ed75e9cbf360773a43c2d1d1fd
Author: Maxim Solodovnik <[email protected]>
AuthorDate: Thu May 23 11:15:13 2019 +0700
[OPENMEETINGS-2042] another attempt to fix coverage
---
pom.xml | 25 +++++++++++++------------
1 file changed, 13 insertions(+), 12 deletions(-)
diff --git a/pom.xml b/pom.xml
index 4c23792..ddda15d 100644
--- a/pom.xml
+++ b/pom.xml
@@ -1536,24 +1536,25 @@
</profile>
<profile>
<id>jacoco-report</id>
- <reporting>
+ <build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
- <reportSets>
- <reportSet>
- <reports>
-
<report>report</report>
- </reports>
- </reportSet>
- </reportSets>
- <configuration>
-
<dataFile>${jacoco.binary.path}</dataFile>
- </configuration>
+ <executions>
+ <execution>
+
<id>jacoco-report</id>
+ <goals>
+
<goal>report</goal>
+ </goals>
+ <configuration>
+
<dataFile>${jacoco.binary.path}</dataFile>
+ </configuration>
+ </execution>
+ </executions>
</plugin>
</plugins>
- </reporting>
+ </build>
</profile>
</profiles>
</project>
