ch.tutteli.junitjacoco
Owner: Robert Stoll
Applies the junit5 platform plugin and binds jacoco to it.
https://github.com/robstoll/tutteli-gradle-plugins
Sources: https://github.com/robstoll/tutteli-gradle-plugin.git
Version 1.0.0 (latest)
1.0.0
Created 17 July 2021.
Sets up JaCoCo for the JUnit 5 Platform
Using the plugins DSL:
plugins {
id("ch.tutteli.junitjacoco") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ch.tutteli:tutteli-gradle-junitjacoco:1.0.0")
}
}
apply(plugin = "ch.tutteli.junitjacoco")
Using the plugins DSL:
plugins {
id "ch.tutteli.junitjacoco" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ch.tutteli:tutteli-gradle-junitjacoco:1.0.0"
}
}
apply plugin: "ch.tutteli.junitjacoco"