com.xenoterracide.gradle.convention.coverage
Owner: Caleb Cushing
supports unified coverage for multiple jvm-test-suites
https://github.com/xenoterracide/gradle-convention
Sources: https://github.com/xenoterracide/gradle-convention.git
Version 0.2.0 (latest)
0.2.0
Created 25 October 2024.
supports unified coverage for multiple jvm-test-suites
Using the plugins DSL:
plugins {
id("com.xenoterracide.gradle.convention.coverage") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.xenoterracide.gradle.convention:coverage:0.2.0")
}
}
apply(plugin = "com.xenoterracide.gradle.convention.coverage")
Using the plugins DSL:
plugins {
id "com.xenoterracide.gradle.convention.coverage" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.xenoterracide.gradle.convention:coverage:0.2.0"
}
}
apply plugin: "com.xenoterracide.gradle.convention.coverage"