From ae3dc3e4ccd9345db30bb8e595e51f016e97d24a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Behrens?= Date: Sun, 8 Nov 2015 17:07:57 +0100 Subject: [PATCH] enable codecov.io support this PR enables our ci-server to evaluate code coverage and submit the resulting data to codecov.io --- .travis.yml | 1 + pom.xml | 21 +++++++++++++++++++++ readme.md | 3 ++- 3 files changed, 24 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index f9a9cf069..8baa6e401 100644 --- a/.travis.yml +++ b/.travis.yml @@ -52,3 +52,4 @@ before_install: after_success: - ./deploy_snapshot.sh + - bash <(curl -s https://codecov.io/bash) || echo "Codecov did not collect coverage reports" diff --git a/pom.xml b/pom.xml index 9ec56a577..e303359bc 100644 --- a/pom.xml +++ b/pom.xml @@ -94,6 +94,7 @@ 2.2 2.5 2.18.1 + 0.7.5.201505241946 4.4.1 4.4.1 @@ -368,6 +369,26 @@ + + + org.jacoco + jacoco-maven-plugin + ${jacoco-maven-plugin.version} + + + + prepare-agent + + + + report + test + + report + + + +