io.github.jeadyx.sonatype-uploader
Owner: jeady x
Upload your maven artifact to Sonatype repo
https://github.com/jeadyx/SonatypeUploader
Sources: https://github.com/jeadyx/SonatypeUploader
Version 2.8 (latest)
2.8
Created 25 July 2024.
Publish your maven artifact to Sonatype repo
Using the plugins DSL:
plugins {
id("io.github.jeadyx.sonatype-uploader") version "2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jeadyx:sonatypeUploader:2.8")
}
}
apply(plugin = "io.github.jeadyx.sonatype-uploader")
Using the plugins DSL:
plugins {
id "io.github.jeadyx.sonatype-uploader" version "2.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jeadyx:sonatypeUploader:2.8"
}
}
apply plugin: "io.github.jeadyx.sonatype-uploader"