io.github.pacificengine.build.plugin.release
所有者: Joseph Salomone
一个帮助您将Gradle插件发布到不同Maven仓库的插件
https://pacificengine.github.io/build/plugin/release/
来源:https://github.com/PacificEngine/build
使用plugins DSL
plugins {
id("io.github.pacificengine.build.plugin.release") version "0.0.2"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.pacificengine.build.plugin:release:0.0.2")
}
}
apply(plugin = "io.github.pacificengine.build.plugin.release")
使用plugins DSL
plugins {
id "io.github.pacificengine.build.plugin.release" version "0.0.2"
}
使用旧版插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.pacificengine.build.plugin:release:0.0.2"
}
}
apply plugin: "io.github.pacificengine.build.plugin.release"