Search Gradle plugins

io.github.andoloido.coverage

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)

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"

Learn how to apply plugins to subprojects