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.1

Created 19 June 2023.

use ASM when transform code to report which class is used on line, this plugin can help to remove unused code

Using the plugins DSL:

plugins {
  id("io.github.andoloido.coverage") version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.andoloido.coverage:plugin:0.0.1")
  }
}

apply(plugin = "io.github.andoloido.coverage")

Using the plugins DSL:

plugins {
  id "io.github.andoloido.coverage" version "0.0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.andoloido.coverage:plugin:0.0.1"
  }
}

apply plugin: "io.github.andoloido.coverage"

Learn how to apply plugins to subprojects