Modification of the standard Maven Publish plugin to be compatible with android-library projects (aar).
plugins {
id 'digital.wup.android-maven-publish' version '3.1.0'
}
-or-
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'digital.wup:android-maven-publish:3.1.0'
}
}
apply plugin: 'digital.wup.android-maven-publish'
The android-maven-publish plugin provides a SoftwareComponent
like java
plugin (components.java
).
The android component is used to determine which aar files to publish, and which dependencies should be listed in the generated POM file.
Please refer to the standard Maven Publish plugin documentation: https://docs.gradle.org/current/userguide/publishing_maven.html
publishing {
publications {
mavenAar(MavenPublication) {
from components.android
}
}
}
If you want publish custom variants:
publishing {
publications {
android.libraryVariants.all { v ->
"maven${variant.name.capitalize()}Aar"(MavenPublication) {
from components.findByName("android${v.name.capitalize()}")
groupId 'digital.wup.test-publish'
artifactId 'test-publish'
version "1.0.0-${variant.name}"
}
}
}
}
Plugin Version | Dependency Information | Gradle Version |
---|---|---|
1.0.0 | digital.wup:android-maven-publish:1.0.0 | 2.4 - 3.3 |
2.0.0 | digital.wup:android-maven-publish:2.0.0 | 3.4 - 4.0 |
3.0.0 | digital.wup:android-maven-publish:3.0.0 | 3.4 - 4.1 |
3.1.0 | digital.wup:android-maven-publish:3.1.0 | 4.2 - |
Copyright 2017 W.UP, Ltd.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.