Support publishing AARs to maven local

This commit is contained in:
Moxie Marlinspike
2013-10-12 09:09:33 -07:00
parent eb4cc7f4e5
commit b010c5194a

View File

@@ -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())
}
}
}