Skip to content

Commit 152096d

Browse files
updated coverage maven plugin
1 parent 9669ef6 commit 152096d

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@
130130
<plugin>
131131
<groupId>org.codehaus.mojo</groupId>
132132
<artifactId>cobertura-maven-plugin</artifactId>
133-
<version>2.6</version>
133+
<version>2.7</version>
134134
<configuration>
135135
<format>xml</format>
136136
<instrumentation>

travis.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
44
echo '$TRAVIS_PULL_REQUEST is false, running all tests'
5-
mvn clean install -Dmaven.test.skip=true && mvn clean verify cobertura:cobertura-integration-test coveralls:report
5+
mvn clean install -Dmaven.test.skip=true
6+
mvn clean verify cobertura:cobertura-integration-test coveralls:report
67
codecov
78
else
89
echo '$TRAVIS_PULL_REQUEST is not false ($TRAVIS_PULL_REQUEST), running unit tests'
9-
mvn clean install -Dmaven.test.skip=true && mvn clean test
10+
mvn clean install -Dmaven.test.skip=true
11+
mvn clean test
1012
fi

0 commit comments

Comments
 (0)