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