io.github.kyay10.kotlin-all-static
所有者: Youssef Shoaib
一个Kotlin编译器插件,它自动将对象内的每个函数/属性设置为静态
https://github.com/kyay10/kotlin-all-static
来源: https://github.com/kyay10/kotlin-all-static
使用 插件 DSL
plugins {
id("io.github.kyay10.kotlin-all-static") version "0.1.1"
}
使用 旧式插件应用方式
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kyay10.kotlin-all-static:gradle-plugin:0.1.1")
}
}
apply(plugin = "io.github.kyay10.kotlin-all-static")
使用 插件 DSL
plugins {
id "io.github.kyay10.kotlin-all-static" version "0.1.1"
}
使用 旧式插件应用方式
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kyay10.kotlin-all-static:gradle-plugin:0.1.1"
}
}
apply plugin: "io.github.kyay10.kotlin-all-static"