io.github.turansky.kfc.maven-publish
所有者: Victor Turansky
预定义的 Kotlin Maven 发布
https://github.com/turansky/kfc-plugins
源代码: https://github.com/turansky/kfc-plugins
使用plugins DSL
plugins {
id("io.github.turansky.kfc.maven-publish") version "5.133.0"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.turansky.kfc:kfc-gradle-plugin:5.133.0")
}
}
apply(plugin = "io.github.turansky.kfc.maven-publish")
使用plugins DSL
plugins {
id "io.github.turansky.kfc.maven-publish" version "5.133.0"
}
使用旧的插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.turansky.kfc:kfc-gradle-plugin:5.133.0"
}
}
apply plugin: "io.github.turansky.kfc.maven-publish"