Skip to content

Commit ada94f4

Browse files
committed
Configures coverage reporting with JoCoCo.
1 parent 614ad4e commit ada94f4

File tree

1 file changed

+41
-32
lines changed

1 file changed

+41
-32
lines changed

pom.xml

Lines changed: 41 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -14,32 +14,32 @@
1414
<url>https://github.com/ChargeTimeEU/Java-OCA-OCPP</url>
1515

1616
<licenses>
17-
<license>
18-
<name>MIT License</name>
19-
<url>http://www.opensource.org/licenses/mit-license.php</url>
20-
</license>
17+
<license>
18+
<name>MIT License</name>
19+
<url>http://www.opensource.org/licenses/mit-license.php</url>
20+
</license>
2121
</licenses>
2222

2323
<developers>
24-
<developer>
25-
<name>Thomas Volden</name>
26-
<email>[email protected]</email>
27-
<organization>chargetime.eu</organization>
28-
<organizationUrl>http://www.chargetime.eu</organizationUrl>
29-
</developer>
30-
</developers>
24+
<developer>
25+
<name>Thomas Volden</name>
26+
<email>[email protected]</email>
27+
<organization>chargetime.eu</organization>
28+
<organizationUrl>http://www.chargetime.eu</organizationUrl>
29+
</developer>
30+
</developers>
3131

32-
<scm>
33-
<connection>scm:git:git://github.com/ChargeTimeEU/Java-OCA-OCPP.git</connection>
34-
<developerConnection>scm:git:ssh://github.com:ChargeTimeEU/Java-OCA-OCPP.git</developerConnection>
35-
<url>https://github.com/ChargeTimeEU/Java-OCA-OCPP.git</url>
36-
</scm>
32+
<scm>
33+
<connection>scm:git:git://github.com/ChargeTimeEU/Java-OCA-OCPP.git</connection>
34+
<developerConnection>scm:git:ssh://github.com:ChargeTimeEU/Java-OCA-OCPP.git</developerConnection>
35+
<url>https://github.com/ChargeTimeEU/Java-OCA-OCPP.git</url>
36+
</scm>
3737

38-
<modules>
39-
<module>ocpp-common</module>
40-
<module>ocpp-v1_6</module>
41-
<module>ocpp-v1_6-test</module>
42-
</modules>
38+
<modules>
39+
<module>ocpp-common</module>
40+
<module>ocpp-v1_6</module>
41+
<module>ocpp-v1_6-test</module>
42+
</modules>
4343

4444
<build>
4545
<plugins>
@@ -52,17 +52,26 @@
5252
</configuration>
5353
<version>3.5.1</version>
5454
</plugin>
55-
<plugin>
56-
<groupId>org.codehaus.mojo</groupId>
57-
<artifactId>cobertura-maven-plugin</artifactId>
58-
<version>2.7</version>
59-
<configuration>
60-
<formats>
61-
<format>html</format>
62-
<format>xml</format>
63-
</formats>
64-
<check />
65-
</configuration>
55+
<plugin>
56+
<groupId>org.eluder.coveralls</groupId>
57+
<artifactId>coveralls-maven-plugin</artifactId>
58+
<version>4.3.0</version>
59+
<configuration>
60+
<sourceEncoding>UTF8</sourceEncoding>
61+
</configuration>
62+
</plugin>
63+
<plugin>
64+
<groupId>org.jacoco</groupId>
65+
<artifactId>jacoco-maven-plugin</artifactId>
66+
<version>0.7.9</version>
67+
<executions>
68+
<execution>
69+
<id>prepare-agent</id>
70+
<goals>
71+
<goal>prepare-agent</goal>
72+
</goals>
73+
</execution>
74+
</executions>
6675
</plugin>
6776
</plugins>
6877
</build>

0 commit comments

Comments
 (0)