Search Gradle plugins

com.github.dcendents.android-maven

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

https://github.com/dcendents/android-maven-gradle-plugin

Version 1.4

Created 21 June 2016.

No version description available.

Using the plugins DSL:

plugins {
  id("com.github.dcendents.android-maven") version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.dcendents:android-maven-gradle-plugin:1.4")
  }
}

apply(plugin = "com.github.dcendents.android-maven")

Using the plugins DSL:

plugins {
  id "com.github.dcendents.android-maven" version "1.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.dcendents:android-maven-gradle-plugin:1.4"
  }
}

apply plugin: "com.github.dcendents.android-maven"

Learn how to apply plugins to subprojects