[gradle] Bump coveralls-gradle-plugin to 2.10.2

This should make it work with Github Actions.
This commit is contained in:
Florian Schmaus 2021-01-12 12:43:10 +01:00
parent 1bfb9f34f1
commit 9fb4a2bf4f
2 changed files with 3 additions and 1 deletions

View File

@ -83,6 +83,8 @@ jobs:
- name: Jacoco Test Coverage - name: Jacoco Test Coverage
if: ${{ matrix.java == 1.8 }} if: ${{ matrix.java == 1.8 }}
run: ${PATH_TO_GRADLE} jacocoRootReport coveralls run: ${PATH_TO_GRADLE} jacocoRootReport coveralls
env:
COVERALLS_REPO_TOKEN: S2ecSJja2cKJa9yv45C8ZFPohXuRrTXKd
# Upload build artifacts # Upload build artifacts
- name: Upload build artifacts - name: Upload build artifacts

View File

@ -7,7 +7,6 @@ buildscript {
dependencies { dependencies {
classpath 'org.kordamp:markdown-gradle-plugin:1.0.0' classpath 'org.kordamp:markdown-gradle-plugin:1.0.0'
classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.2' classpath 'org.kordamp.gradle:clirr-gradle-plugin:0.2.2'
classpath "org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.3.1"
} }
} }
@ -16,6 +15,7 @@ plugins {
id 'net.ltgt.errorprone' version '1.1.1' id 'net.ltgt.errorprone' version '1.1.1'
// Use e.g. "gradle <task> taskTree" to show its dependency tree. // Use e.g. "gradle <task> taskTree" to show its dependency tree.
id 'com.dorongold.task-tree' version '1.5' id 'com.dorongold.task-tree' version '1.5'
id 'com.github.kt3k.coveralls' version '2.10.2'
} }
apply plugin: 'org.kordamp.gradle.markdown' apply plugin: 'org.kordamp.gradle.markdown'