digital.wup.android-maven-publish
                  Owner:
                  
                    
                    W.UP Ltd.
                  
                
Modification to the standard Maven Publish plugin to be compatible with android-library projects (aar).
https://github.com/wupdigital/android-maven-publish
Sources: https://github.com/wupdigital/android-maven-publish
Version 3.5.1
Created 19 June 2018.
                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.5.1"
}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.5.1") }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.5.1") } } apply(plugin = "digital.wup.android-maven-publish")
- Applying plugins to all subprojects .