me.tatarka.central.maven-central-publish
Owner: Eva Tatarka
Gradle plugin to easily set up publishing to maven central
https://github.com/evant/maven-central-publish
Sources: https://github.com/evant/maven-central-publish
Version 0.1.4 (latest)
Created 25 August 2019.
Gradle plugin to easily set up publishing to maven central
Add this plugin to your build using the plugins DSL:
plugins {
id("me.tatarka.central.maven-central-publish") version "0.1.4"
}
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("me.tatarka.central.maven-central-publish:me.tatarka.central.maven-central-publish.gradle.plugin:0.1.4") }
It can then be applied in the precompiled script plugin:plugins { id("me.tatarka.central.maven-central-publish") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("me.tatarka.central.maven-central-publish:me.tatarka.central.maven-central-publish.gradle.plugin:0.1.4") } } apply(plugin = "me.tatarka.central.maven-central-publish")
- Applying plugins to all subprojects .