com.github.nbaztec.coveralls-jacoco
Owner: Nisheeth Barthwal
Send jacoco coverage data to coveralls.io
http://github.com/nbaztec/coveralls-jacoco-gradle-plugin/
Sources: https://github.com/nbaztec/coveralls-jacoco-gradle-plugin.git
Version 1.2.20 (latest)
1.2.20
Created 06 May 2024.
Send jacoco coverage data to coveralls.io
Using the plugins DSL:
plugins {
id("com.github.nbaztec.coveralls-jacoco") version "1.2.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.20")
}
}
apply(plugin = "com.github.nbaztec.coveralls-jacoco")
Using the plugins DSL:
plugins {
id "com.github.nbaztec.coveralls-jacoco" version "1.2.20"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.20"
}
}
apply plugin: "com.github.nbaztec.coveralls-jacoco"