io.github.andoloido.coverage
Owner: andoloido
use ASM when transform code to report which class is used on line, this plugin can help to remove unused code
https://github.com/andoloido/CodeCoverage
Sources: https://github.com/andoloido/CodeCoverage
Version 0.0.4 (latest)
0.0.4
Created 30 June 2023.
Using ASM to report which classes are used during code transformation, this plugin can help us remove unused code.
Using the plugins DSL:
plugins {
id("io.github.andoloido.coverage") version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.andoloido.coverage:plugin:0.0.4")
}
}
apply(plugin = "io.github.andoloido.coverage")
Using the plugins DSL:
plugins {
id "io.github.andoloido.coverage" version "0.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.andoloido.coverage:plugin:0.0.4"
}
}
apply plugin: "io.github.andoloido.coverage"