com.github.nbaztec.coveralls-jacoco
所有者: Nisheeth Barthwal
将jacoco覆盖率数据发送到coveralls.io
http://github.com/nbaztec/coveralls-jacoco-gradle-plugin/
源:https://github.com/nbaztec/coveralls-jacoco-gradle-plugin.git
使用plugins DSL
plugins {
id("com.github.nbaztec.coveralls-jacoco") version "1.2.20"
}
使用传统插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.20")
}
}
apply(plugin = "com.github.nbaztec.coveralls-jacoco")
使用plugins DSL
plugins {
id "com.github.nbaztec.coveralls-jacoco" version "1.2.20"
}
使用传统插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.nbaztec:coveralls-jacoco-gradle-plugin:1.2.20"
}
}
apply plugin: "com.github.nbaztec.coveralls-jacoco"