io.github.xjxlx.publishing
Owner: XTF
A helper plug-in for publishing an application
https://github.com/xjxlx/plugins/blob/main/publish/README.md
Sources: https://github.com/xjxlx/plugins
Version 1.0.2 (latest)
1.0.2
Created 24 January 2024.
A helper plug-in for publishing an application
Using the plugins DSL:
plugins {
id("io.github.xjxlx.publishing") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.xjxlx:publish:1.0.2")
}
}
apply(plugin = "io.github.xjxlx.publishing")
Using the plugins DSL:
plugins {
id "io.github.xjxlx.publishing" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.xjxlx:publish:1.0.2"
}
}
apply plugin: "io.github.xjxlx.publishing"