org.jetbrains.kotlin.plugin.sam.with.receiver
所有者: Kotlin 团队
Kotlin Sam-with-receiver 编译器插件
来源: https://github.com/jetbrains/kotlin
使用插件 DSL
plugins {
id("org.jetbrains.kotlin.plugin.sam.with.receiver") version "2.0.20-RC2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.jetbrains.kotlin:kotlin-sam-with-receiver:2.0.20-RC2")
}
}
apply(plugin = "org.jetbrains.kotlin.plugin.sam.with.receiver")
使用插件 DSL
plugins {
id "org.jetbrains.kotlin.plugin.sam.with.receiver" version "2.0.20-RC2"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.jetbrains.kotlin:kotlin-sam-with-receiver:2.0.20-RC2"
}
}
apply plugin: "org.jetbrains.kotlin.plugin.sam.with.receiver"