From a80afee3364d53a72c51ab0c166bcb202fb54fc6 Mon Sep 17 00:00:00 2001 From: John Scancella Date: Mon, 3 Oct 2022 17:03:53 -0400 Subject: [PATCH] ci: update coveralls gradle plugin to one that is more actively supported (#69) * ci: update coveralls gradle plugin to one that is more actively supported. Closes #65 * ci: forgot to add circleci config to last commit --- .circleci/config.yml | 2 +- build.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1549d9f..1c6b0d0 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -31,7 +31,7 @@ jobs: GRADLE_OPTS: "-Xmx1024m -Dorg.gradle.jvmargs='-Xmx1024m'" - run: name: upload coverage to coveralls - command: ./gradlew coveralls --no-daemon + command: ./gradlew coverallsJacoco --no-daemon environment: GRADLE_OPTS: "-Xmx1024m -Dorg.gradle.jvmargs='-Xmx1024m'" - store_artifacts: diff --git a/build.gradle b/build.gradle index 70a4121..c51cb17 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ plugins { //these have to be in the main project for now see: //https://discuss.gradle.org/t/how-do-i-include-buildscript-block-from-external-gradle-script/7016/2 - id "com.github.kt3k.coveralls" version "2.12.0" + id "com.github.nbaztec.coveralls-jacoco" version "1.2.14" id "de.aaschmid.cpd" version "3.3" id "org.owasp.dependencycheck" version "7.2.1" id "org.ajoberstar.grgit" version "5.0.0"