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)
Created 11 March 2024.
Gradle plugin for building and uploading bundles to the Sonatype Maven Central Repository.
Add this plugin to your build using the plugins DSL:
plugins {
id("eu.kakde.gradle.sonatype-maven-central-publisher") version "1.0.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("eu.kakde.gradle.sonatype-maven-central-publisher:eu.kakde.gradle.sonatype-maven-central-publisher.gradle.plugin:1.0.6") }
It can then be applied in the precompiled script plugin:plugins { id("eu.kakde.gradle.sonatype-maven-central-publisher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("eu.kakde.gradle.sonatype-maven-central-publisher:eu.kakde.gradle.sonatype-maven-central-publisher.gradle.plugin:1.0.6") } } apply(plugin = "eu.kakde.gradle.sonatype-maven-central-publisher")
- Applying plugins to all subprojects .