chrisbanes / gradle-mvn-push

Helper to upload Gradle Android Artifacts to Maven repositories
Apache License 2.0
1.05k stars 283 forks source link

Add installArchives task which installs jars/aars in local repo #41

Open chalup opened 9 years ago

chalup commented 9 years ago

Implements #34.

johnjohndoe commented 9 years ago

Alternatively, you could use the android-maven-plugin:

// root build.gradle
buildscript {
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:0.12.2'
        classpath 'com.github.dcendents:android-maven-plugin:1.0'
    }
}
// library build.gradle
apply plugin: 'android-maven'
version = "1.0.0"
group = "com.example"
archivesBaseName = "awesome-library"
yogurtearl commented 9 years ago

Thanks! @chrisbanes , thoughts?

AlexanderLS commented 6 years ago

@chalup @johnjohndoe @yogurtearl your commits merged to https://github.com/Vorlonsoft/GradleMavenPush