搜索 Gradle 插件

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

版本 0.2.0 (最新)

0.2.0

创建于 2022 年 6 月 18 日。

一个 Kotlin 编译器插件,允许 Java 调用者使用 null 替代默认参数

使用 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"

学习如何应用插件到子项目