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