Repository: commons-crypto Updated Branches: refs/heads/master 8b8af6df9 -> 9c0a452f7 (forced update)
Fix travis Project: http://git-wip-us.apache.org/repos/asf/commons-crypto/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-crypto/commit/9c0a452f Tree: http://git-wip-us.apache.org/repos/asf/commons-crypto/tree/9c0a452f Diff: http://git-wip-us.apache.org/repos/asf/commons-crypto/diff/9c0a452f Branch: refs/heads/master Commit: 9c0a452f7607dc8f41034133693e43c43fbdca11 Parents: dc1769e Author: Sun Dapeng <[email protected]> Authored: Mon Nov 21 09:36:55 2016 +0800 Committer: Sun Dapeng <[email protected]> Committed: Mon Nov 21 09:48:49 2016 +0800 ---------------------------------------------------------------------- .travis.yml | 3 +++ pom.xml | 8 ++++++++ 2 files changed, 11 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/9c0a452f/.travis.yml ---------------------------------------------------------------------- diff --git a/.travis.yml b/.travis.yml index 0f5b2b4..6e0ae0c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -30,3 +30,6 @@ script: - mvn verify site - jdk_switcher use oraclejdk8 - mvn verify site + +after_success: + - mvn clean test jacoco:report coveralls:report http://git-wip-us.apache.org/repos/asf/commons-crypto/blob/9c0a452f/pom.xml ---------------------------------------------------------------------- diff --git a/pom.xml b/pom.xml index e0b7cb9..c9474a9 100644 --- a/pom.xml +++ b/pom.xml @@ -225,6 +225,9 @@ The following provides more details on the included cryptographic software: <commons-logging.version>1.1.3</commons-logging.version> <commons.jacoco.version>0.7.7.201606060606</commons.jacoco.version> <slf4j-api.version>1.7.10</slf4j-api.version> + + <!-- Override default buildNumber timestamp format, needed for coveralls plugin --> + <maven.buildNumber.timestampFormat>{0,date,yyyy-MM-dd HH:mm:ssZ}</maven.buildNumber.timestampFormat> </properties> <profiles> <profile> @@ -293,6 +296,11 @@ The following provides more details on the included cryptographic software: </excludes> </configuration> </plugin> + <plugin> + <groupId>org.eluder.coveralls</groupId> + <artifactId>coveralls-maven-plugin</artifactId> + <version>3.1.0</version> + </plugin> </plugins> </build> <reporting>
