From b010c5194aabfbc80181f868d2441686b5ae4504 Mon Sep 17 00:00:00 2001 From: Moxie Marlinspike Date: Sat, 12 Oct 2013 09:09:33 -0700 Subject: [PATCH] Support publishing AARs to maven local --- library/build.gradle | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/library/build.gradle b/library/build.gradle index 2e36f7e12a..a4878c034e 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -9,6 +9,7 @@ buildscript { } apply plugin: 'android-library' +apply plugin: 'maven' repositories { mavenCentral() @@ -42,3 +43,15 @@ android { } } } + +version '0.1' +group 'org.whispersystems.textsecure' +archivesBaseName = 'textsecure-library' + +uploadArchives { + repositories { + mavenDeployer { + repository(url: mavenLocal().getUrl()) + } + } +} \ No newline at end of file