io.github.izhangzhihao.unmeta
Owner: 张志豪
Remove @Metadata and @DebugMetadata annotation from your Kotlin classes
https://github.com/izhangzhihao/unmeta
Sources: https://github.com/izhangzhihao/unmeta
Version 1.0.3 (latest)
1.0.3
Created 09 August 2024.
Remove @Metadata and @DebugMetadata annotation from your Kotlin classes
Using the plugins DSL:
plugins {
id("io.github.izhangzhihao.unmeta") version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.izhangzhihao:plugin:1.0.3")
}
}
apply(plugin = "io.github.izhangzhihao.unmeta")
Using the plugins DSL:
plugins {
id "io.github.izhangzhihao.unmeta" version "1.0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.izhangzhihao:plugin:1.0.3"
}
}
apply plugin: "io.github.izhangzhihao.unmeta"