io.gitee.pkmer.sonatype-central-publisher
Owner: pkmer
The plugin that allows you to publish artifacts to the Sonatype Maven Central Portal via the Central Portal.
https://gitee.com/pkmer/sonatype-central-publisher
Sources: https://gitee.com/pkmer/sonatype-central-publisher.git
Version 1.1.0 (latest)
1.1.0
Created 21 August 2024.
The plugin that allows you to publish artifacts to the Sonatype Maven Central Portal via the Central Portal.
Using the plugins DSL:
plugins {
id("io.gitee.pkmer.sonatype-central-publisher") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.gitee.pkmer:central-publisher:1.1.0")
}
}
apply(plugin = "io.gitee.pkmer.sonatype-central-publisher")
Using the plugins DSL:
plugins {
id "io.gitee.pkmer.sonatype-central-publisher" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.gitee.pkmer:central-publisher:1.1.0"
}
}
apply plugin: "io.gitee.pkmer.sonatype-central-publisher"