io.github.jamesfchen.module-publisher-plugin
Owner: electrolytej
module-publisher-plugin
https://github.com/JamesfChen/bundles-assembler
Sources: https://github.com/JamesfChen/bundles-assembler
Using the plugins DSL:
plugins {
id("io.github.jamesfchen.module-publisher-plugin") version "1.4.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jamesfchen:module-publisher-plugin:1.4.5")
}
}
apply(plugin = "io.github.jamesfchen.module-publisher-plugin")
Using the plugins DSL:
plugins {
id "io.github.jamesfchen.module-publisher-plugin" version "1.4.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jamesfchen:module-publisher-plugin:1.4.5"
}
}
apply plugin: "io.github.jamesfchen.module-publisher-plugin"