io.github.uoxx3.publishing
Owner: Brian Alvarez
Set up Maven and Ivy type projects to publish without dying.
https://github.com/uoxx3/publish-plugin
Sources: https://github.com/uoxx3/publish-plugin.git
Version 1.0 (latest)
1.0
Created 08 October 2024.
Set up Maven and Ivy type projects to publish without dying.
Using the plugins DSL:
plugins {
id("io.github.uoxx3.publishing") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.uoxx3:publishing:1.0")
}
}
apply(plugin = "io.github.uoxx3.publishing")
Using the plugins DSL:
plugins {
id "io.github.uoxx3.publishing" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.uoxx3:publishing:1.0"
}
}
apply plugin: "io.github.uoxx3.publishing"