dev.lukebemish.central-portal-publishing
Owner:
Luke Bemish
A plugin for publishing to maven central with the new publishing portal
https://github.com/lukebemishprojects/CentralPortalPublishing
Sources: https://github.com/lukebemishprojects/CentralPortalPublishing.git
Version 0.1.0
Created 10 May 2025.
A plugin for publishing to maven central with the new publishing portal
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.lukebemish.central-portal-publishing") version "0.1.0"
}
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("dev.lukebemish.central-portal-publishing:dev.lukebemish.central-portal-publishing.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.lukebemish.central-portal-publishing") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.lukebemish.central-portal-publishing:dev.lukebemish.central-portal-publishing.gradle.plugin:0.1.0") } } apply(plugin = "dev.lukebemish.central-portal-publishing")
- Applying plugins to all subprojects .