Skip to content

Commit dafa6ca

Browse files
committed
forcing codecov to run on all branches
1 parent e02f83c commit dafa6ca

File tree

1 file changed

+17
-13
lines changed

1 file changed

+17
-13
lines changed

pom.xml

Lines changed: 17 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@
2424
</dependencies>
2525

2626
<build>
27-
<pluginManagement>
2827
<plugins>
2928
<plugin>
3029
<groupId>org.apache.maven.plugins</groupId>
@@ -40,19 +39,24 @@
4039
</configuration>
4140
</plugin>
4241
<plugin>
43-
<groupId>org.codehaus.mojo</groupId>
44-
<artifactId>cobertura-maven-plugin</artifactId>
45-
<version>2.7</version>
46-
<configuration>
47-
<formats>
48-
<format>html</format>
49-
<format>xml</format>
50-
</formats>
51-
<check />
52-
<maxmem>256m</maxmem>
53-
</configuration>
42+
<groupId>org.jacoco</groupId>
43+
<artifactId>jacoco-maven-plugin</artifactId>
44+
<version>0.7.7.201606060606</version>
45+
<executions>
46+
<execution>
47+
<goals>
48+
<goal>prepare-agent</goal>
49+
</goals>
50+
</execution>
51+
<execution>
52+
<id>report</id>
53+
<phase>test</phase>
54+
<goals>
55+
<goal>report</goal>
56+
</goals>
57+
</execution>
58+
</executions>
5459
</plugin>
5560
</plugins>
56-
</pluginManagement>
5761
</build>
5862
</project>

0 commit comments

Comments
 (0)