net.smoofyuniverse.jacoco-offline
Owner: Hugo Dupanloup
Fork of the official Jacoco plugin that supports offline instrumentation.
https://github.com/Yeregorix/jacoco-offline
Sources: https://github.com/Yeregorix/jacoco-offline.git
Version 1.0.0 (latest)
1.0.0
Created 31 January 2023.
Fork of the official Jacoco plugin that supports offline instrumentation.
Using the plugins DSL:
plugins {
id("net.smoofyuniverse.jacoco-offline") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.smoofyuniverse:jacoco-offline:1.0.0")
}
}
apply(plugin = "net.smoofyuniverse.jacoco-offline")
Using the plugins DSL:
plugins {
id "net.smoofyuniverse.jacoco-offline" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.smoofyuniverse:jacoco-offline:1.0.0"
}
}
apply plugin: "net.smoofyuniverse.jacoco-offline"