Skip to content
This repository was archived by the owner on Apr 15, 2023. It is now read-only.

Commit 0d0fd30

Browse files
Merge branch 'master' into develop
2 parents b98406e + 7e11e2f commit 0d0fd30

File tree

3 files changed

+24
-2
lines changed

3 files changed

+24
-2
lines changed

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,7 @@ notifications:
1010
branches:
1111
only:
1212
- master
13-
- develop
13+
- develop
14+
15+
after_success:
16+
- mvn clean cobertura:cobertura coveralls:report

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
[![Build Status](https://travis-ci.org/massimozappino/tagmycode-java-sdk.svg?branch=master)](https://travis-ci.org/massimozappino/tagmycode-java-sdk)
2+
[![Coverage Status](https://coveralls.io/repos/github/massimozappino/tagmycode-java-sdk/badge.svg)](https://coveralls.io/github/massimozappino/tagmycode-java-sdk)
23

34
# TagMyCode Java SDK
45
A Java library to access [TagMyCode RESTful API](http://tagmycode.com).

pom.xml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,25 @@
8181
<autoReleaseAfterClose>true</autoReleaseAfterClose>
8282
</configuration>
8383
</plugin>
84-
84+
<plugin>
85+
<groupId>org.eluder.coveralls</groupId>
86+
<artifactId>coveralls-maven-plugin</artifactId>
87+
<version>4.3.0</version>
88+
<!--<configuration>-->
89+
<!--<repoToken>yourcoverallsprojectrepositorytoken</repoToken>-->
90+
<!--</configuration>-->
91+
</plugin>
92+
<plugin>
93+
<groupId>org.codehaus.mojo</groupId>
94+
<artifactId>cobertura-maven-plugin</artifactId>
95+
<version>2.7</version>
96+
<configuration>
97+
<format>xml</format>
98+
<maxmem>256m</maxmem>
99+
<!-- aggregated reports for multi-module projects -->
100+
<aggregate>true</aggregate>
101+
</configuration>
102+
</plugin>
85103

86104
</plugins>
87105
</build>

0 commit comments

Comments
 (0)