Support publishing AARs to maven local

pull/1/head
Moxie Marlinspike 11 years ago
parent eb4cc7f4e5
commit b010c5194a

@ -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())
}
}
}
Loading…
Cancel
Save