io.github.kyay10.kotlin-null-defaults
所有者: Youssef Shoaib
一个 Kotlin 编译器插件,允许 Java 调用者使用 null 替代默认参数
https://github.com/kyay10/kotlin-null-defaults
来源: https://github.com/kyay10/kotlin-null-defaults
使用 plugins DSL
plugins {
id("io.github.kyay10.kotlin-null-defaults") version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.kyay10.kotlin-null-defaults:gradle-plugin:0.2.0")
}
}
apply(plugin = "io.github.kyay10.kotlin-null-defaults")
使用 plugins DSL
plugins {
id "io.github.kyay10.kotlin-null-defaults" version "0.2.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.kyay10.kotlin-null-defaults:gradle-plugin:0.2.0"
}
}
apply plugin: "io.github.kyay10.kotlin-null-defaults"