com.github.kyay10.kotlin-null-defaults
拥有者: Youssef Shoaib
Kotlin编译器插件,允许Java调用者使用null替换为默认参数
https://github.com/kyay10/kotlin-null-defaults
来源:https://github.com/kyay10/kotlin-null-defaults
版本 0.1.0(最新版)
0.1.0
创建于2021年8月17日。
Kotlin编译器插件,允许Java调用者使用null替换为默认参数
使用plugins DSL
plugins {
id("com.github.kyay10.kotlin-null-defaults") version "0.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.kyay10.kotlin-null-defaults:gradle-plugin:0.1.0")
}
}
apply(plugin = "com.github.kyay10.kotlin-null-defaults")
使用plugins DSL
plugins {
id "com.github.kyay10.kotlin-null-defaults" version "0.1.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.kyay10.kotlin-null-defaults:gradle-plugin:0.1.0"
}
}
apply plugin: "com.github.kyay10.kotlin-null-defaults"