io.github.jamesfchen.module-publisher-plugin
所有者: electrolytej
module-publisher-plugin
https://github.com/JamesfChen/bundles-assembler
源: https://github.com/JamesfChen/bundles-assembler
使用 插件DSL
plugins {
id("io.github.jamesfchen.module-publisher-plugin") version "1.4.5"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.jamesfchen:module-publisher-plugin:1.4.5")
}
}
apply(plugin = "io.github.jamesfchen.module-publisher-plugin")
使用 插件DSL
plugins {
id "io.github.jamesfchen.module-publisher-plugin" version "1.4.5"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.jamesfchen:module-publisher-plugin:1.4.5"
}
}
apply plugin: "io.github.jamesfchen.module-publisher-plugin"