net.thebugmc.gradle.sonatype-central-portal-publisher
Owner: The Bug
Gradle plugin for building and uploading bundles to the Sonatype Central Portal.
https://gitlab.com/thebugmc/sonatype-central-portal-publisher
Sources: https://gitlab.com/thebugmc/sonatype-central-portal-publisher
Version 1.2.4 (latest)
1.2.4
Created 16 July 2024.
Gradle plugin for building and uploading bundles to the Sonatype Central Portal.
Using the plugins DSL:
plugins {
id("net.thebugmc.gradle.sonatype-central-portal-publisher") version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.thebugmc.gradle:sonatype-central-portal-publisher:1.2.4")
}
}
apply(plugin = "net.thebugmc.gradle.sonatype-central-portal-publisher")
Using the plugins DSL:
plugins {
id "net.thebugmc.gradle.sonatype-central-portal-publisher" version "1.2.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.thebugmc.gradle:sonatype-central-portal-publisher:1.2.4"
}
}
apply plugin: "net.thebugmc.gradle.sonatype-central-portal-publisher"