Repository: commons-compress Updated Branches: refs/heads/master 72f048dbe -> 810883cf0
use jacoco for coveralls report Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/810883cf Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/810883cf Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/810883cf Branch: refs/heads/master Commit: 810883cf0ea7d7254186331825178477a43c9bbf Parents: 72f048d Author: Stefan Bodewig <[email protected]> Authored: Fri Dec 23 09:59:06 2016 +0100 Committer: Stefan Bodewig <[email protected]> Committed: Fri Dec 23 09:59:06 2016 +0100 ---------------------------------------------------------------------- .travis.yml | 2 +- pom.xml | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/810883cf/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 8ce3a32..151942a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -21,4 +21,4 @@ jdk: - oraclejdk8 after_success: - - mvn clean apache-rat:check cobertura:cobertura coveralls:report + - mvn clean apache-rat:check test jacoco:report coveralls:report -Ptravis http://git-wip-us.apache.org/repos/asf/commons-compress/blob/810883cf/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index 68c2d4c..0bea234 100644 --- a/pom.xml +++ b/pom.xml @@ -386,6 +386,8 @@ jar, tar, zip, dump, 7z, arj. </plugins> </build> </profile> + <!-- can be removed in favor of commons-parent's travis-jacoco + profile once parent 42 has been released --> <profile> <id>travis</id> <activation> @@ -397,19 +399,17 @@ jar, tar, zip, dump, 7z, arj. <build> <plugins> <plugin> - <groupId>org.codehaus.mojo</groupId> - <artifactId>cobertura-maven-plugin</artifactId> - <version>${commons.cobertura.version}</version> - <configuration> - <formats> - <format>xml</format> - </formats> - </configuration> + <groupId>org.jacoco</groupId> + <artifactId>jacoco-maven-plugin</artifactId> + <version>${commons.jacoco.version}</version> </plugin> <plugin> <groupId>org.eluder.coveralls</groupId> <artifactId>coveralls-maven-plugin</artifactId> <version>4.3.0</version> + <configuration> + <timestampFormat>EpochMillis</timestampFormat> + </configuration> </plugin> </plugins> </build>
