eu.kakde.gradle.sonatype-maven-central-publisher
Owner: Aniket Kakde
Gradle plugin for building and uploading bundles to the Sonatype Maven Central Repository.
https://github.com/ani2fun/sonatype-maven-central-publisher.git
Sources: https://github.com/ani2fun/sonatype-maven-central-publisher.git
Version 1.0.6 (latest)
1.0.6
Created 11 March 2024.
Gradle plugin for building and uploading bundles to the Sonatype Maven Central Repository.
Using the plugins DSL:
plugins {
id("eu.kakde.gradle.sonatype-maven-central-publisher") version "1.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("eu.kakde.gradle:plugin:1.0.6")
}
}
apply(plugin = "eu.kakde.gradle.sonatype-maven-central-publisher")
Using the plugins DSL:
plugins {
id "eu.kakde.gradle.sonatype-maven-central-publisher" version "1.0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "eu.kakde.gradle:plugin:1.0.6"
}
}
apply plugin: "eu.kakde.gradle.sonatype-maven-central-publisher"