Search Gradle plugins

io.github.appspiriment.mavenpublish

This plugin simplifies the setup of library modules to be published to Maven Central, it still need to be configured. This plugin utilises 'vanniktech maven publish' plugin.

https://github.com/appspiriment/AndroidConventionPlugins

Sources: https://github.com/appspiriment/AndroidConventionPlugins

Version 0.0.3.dev-51 (latest)

Created 28 January 2025.

This plugin simplifies the setup of library modules to be published to Maven Central, it still need to be configured. This plugin utilises 'vanniktech maven publish' plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.appspiriment.mavenpublish") version "0.0.3.dev-51"
}

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("io.github.appspiriment.mavenpublish:io.github.appspiriment.mavenpublish.gradle.plugin:0.0.3.dev-51")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.appspiriment.mavenpublish")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.appspiriment.mavenpublish:io.github.appspiriment.mavenpublish.gradle.plugin:0.0.3.dev-51")
      }
    }
    
    apply(plugin = "io.github.appspiriment.mavenpublish")
  • Applying plugins to all subprojects .