Search Gradle plugins

io.github.izhangzhihao.unmeta

Remove @Metadata and @DebugMetadata annotation from your Kotlin classes

https://github.com/izhangzhihao/unmeta

Sources: https://github.com/izhangzhihao/unmeta

Version 1.0.2 (latest)

Created 10 November 2023.

Remove @Metadata and @DebugMetadata annotation from your Kotlin classes

Using the plugins DSL:

plugins {
  id("io.github.izhangzhihao.unmeta") version "1.0.2"
}

Using legacy plugin application:

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

apply(plugin = "io.github.izhangzhihao.unmeta")

Using the plugins DSL:

plugins {
  id "io.github.izhangzhihao.unmeta" version "1.0.2"
}

Using legacy plugin application:

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

apply plugin: "io.github.izhangzhihao.unmeta"

Learn how to apply plugins to subprojects