com.github.dcendents.android-maven
Owner: Daniel Beland
Modification to the standard Maven plugin to be compatible with android-library projects (aar).
https://github.com/dcendents/android-maven-gradle-plugin
Using the plugins DSL:
plugins {
id("com.github.dcendents.android-maven") version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.dcendents:android-maven-plugin:1.2")
}
}
apply(plugin = "com.github.dcendents.android-maven")
Using the plugins DSL:
plugins {
id "com.github.dcendents.android-maven" version "1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.dcendents:android-maven-plugin:1.2"
}
}
apply plugin: "com.github.dcendents.android-maven"