Search Gradle plugins

Version 3.6.3 (latest)

Created 07 November 2019.

Modification to the standard Maven Publish plugin to be compatible with android-library projects (aar).

Add this plugin to your build using the plugins DSL:

plugins {
  id("digital.wup.android-maven-publish") version "3.6.3"
}

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("digital.wup.android-maven-publish:digital.wup.android-maven-publish.gradle.plugin:3.6.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("digital.wup.android-maven-publish")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("digital.wup.android-maven-publish:digital.wup.android-maven-publish.gradle.plugin:3.6.3")
      }
    }
    
    apply(plugin = "digital.wup.android-maven-publish")
  • Applying plugins to all subprojects .