105 lines
2.7 KiB
Groovy
105 lines
2.7 KiB
Groovy
buildscript {
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.0.0'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.library'
|
|
apply plugin: 'maven'
|
|
apply plugin: 'signing'
|
|
|
|
archivesBaseName = "axolotl-android"
|
|
version = version_number
|
|
group = group_info
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "21.1.2"
|
|
|
|
sourceSets {
|
|
androidTest {
|
|
java.srcDirs = ['src/androidTest/java', project(':tests').file('src/test/java')]
|
|
}
|
|
}
|
|
|
|
libraryVariants.all { variant ->
|
|
variant.outputs.each { output ->
|
|
def outputFile = output.outputFile
|
|
if (outputFile != null && outputFile.name.endsWith('.aar')) {
|
|
def fileName = "${archivesBaseName}-${version}.aar"
|
|
output.outputFile = new File(outputFile.parent, fileName)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
mavenLocal()
|
|
}
|
|
|
|
dependencies {
|
|
compile "org.whispersystems:curve25519-android:${curve25519_version}"
|
|
compile (project(':java')) {
|
|
exclude group: 'org.whispersystems', module: 'curve25519-java'
|
|
}
|
|
}
|
|
|
|
signing {
|
|
required { has("release") && gradle.taskGraph.hasTask("uploadArchives") }
|
|
sign configurations.archives
|
|
}
|
|
|
|
uploadArchives {
|
|
configuration = configurations.archives
|
|
repositories.mavenDeployer {
|
|
beforeDeployment { MavenDeployment deployment -> signing.signPom(deployment) }
|
|
|
|
repository(url: sonatypeRepo) {
|
|
authentication(userName: whisperSonatypeUsername, password: whisperSonatypePassword)
|
|
}
|
|
|
|
pom.project {
|
|
name 'axolotl-android'
|
|
packaging 'aar'
|
|
description 'Axolotl library for Android'
|
|
url 'https://github.com/WhisperSystems/libaxolotl-android'
|
|
|
|
scm {
|
|
url 'scm:git@github.com:WhisperSystems/libaxolotl-android.git'
|
|
connection 'scm:git@github.com:WhisperSystems/libaxolotl-android.git'
|
|
developerConnection 'scm:git@github.com:WhisperSystems/libaxolotl-android.git'
|
|
}
|
|
|
|
licenses {
|
|
license {
|
|
name 'GPLv3'
|
|
url 'https://www.gnu.org/licenses/gpl-3.0.txt'
|
|
distribution 'repo'
|
|
}
|
|
}
|
|
|
|
developers {
|
|
developer {
|
|
name 'Moxie Marlinspike'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
task installArchives(type: Upload) {
|
|
description "Installs the artifacts to the local Maven repository."
|
|
configuration = configurations['archives']
|
|
repositories {
|
|
mavenDeployer {
|
|
repository url: "file://${System.properties['user.home']}/.m2/repository"
|
|
}
|
|
}
|
|
}
|
|
|