From 1101ec03db6d7d1dd5ec86f0b93d4832c0713f37 Mon Sep 17 00:00:00 2001 From: Alexey Zinchenko Date: Mon, 17 Jun 2019 22:31:16 +0300 Subject: [PATCH] Replaced cobertura with jacoco plugin. --- .travis.yml | 2 +- pom.xml | 28 +++++++++++++++++----------- 2 files changed, 18 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 56f536d..9e6d914 100644 --- a/.travis.yml +++ b/.travis.yml @@ -5,7 +5,7 @@ jdk: - openjdk11 install: mvn install -DskipTests -Dgpg.skip -B -script: mvn cobertura:cobertura -Dmaven.skip.deploy=true -B +script: mvn test -Dmaven.skip.deploy=true -B after_success: - bash <(curl -s https://codecov.io/bash) \ No newline at end of file diff --git a/pom.xml b/pom.xml index 6ee4b16..bbb4845 100644 --- a/pom.xml +++ b/pom.xml @@ -132,17 +132,23 @@ - org.codehaus.mojo - cobertura-maven-plugin - 2.7 - - true - - html - xml - - - + org.jacoco + jacoco-maven-plugin + 0.8.4 + + + + prepare-agent + + + + report + test + + report + + +