tech.medivh.plugin.publisher
Owner: Xuan-Zhang Gong
a gradle plugin , all in one publishing
Sources: https://github.com/medivh-project/medivh-publisher.git
Using the plugins DSL:
plugins {
id("tech.medivh.plugin.publisher") version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("tech.medivh:medivh-publisher:0.0.1")
}
}
apply(plugin = "tech.medivh.plugin.publisher")
Using the plugins DSL:
plugins {
id "tech.medivh.plugin.publisher" version "0.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "tech.medivh:medivh-publisher:0.0.1"
}
}
apply plugin: "tech.medivh.plugin.publisher"