libsuperuser: remove maven and bintray stuff

This commit is contained in:
Daniel Martí 2015-03-31 19:37:40 +02:00
parent c64c1a19b7
commit 6deac28a8b
3 changed files with 1 additions and 62 deletions

View File

@ -21,13 +21,6 @@ buildscript {
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.3'
// libsuperuser submodule requires these plugins, even though
// the F-Droid build process never invokes code from them. It
// would be nice to do away with this in the future, so we don't
// force people do download stuff they wont use.
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
}
}

View File

@ -5,8 +5,6 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:1.0.0'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
classpath 'com.github.dcendents:android-maven-plugin:1.2'
}
}

View File

@ -1,6 +1,4 @@
apply plugin: 'com.android.library'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'
android {
compileSdkVersion 21
@ -27,56 +25,6 @@ android {
version = "1.0.0." + (new Date()).format('yyyyMMddHHmm')
group = "eu.chainfire"
bintray {
// in global gradle.properties: "systemProp.bintrayUser=chainfire", etc
user = System.properties['bintrayUser']
key = System.properties['bintrayApiKey']
configurations = ['archives']
dryRun = false
publish = true
pkg {
repo = 'maven'
name = 'libsuperuser'
desc = 'libsuperuser'
websiteUrl = 'https://github.com/Chainfire/libsuperuser'
issueTrackerUrl = 'https://github.com/Chainfire/libsuperuser/issues'
vcsUrl = 'https://github.com/Chainfire/libsuperuser.git'
licenses = ['Apache-2.0']
publicDownloadNumbers = true
}
}
install {
repositories.mavenInstaller {
pom {
project {
packaging 'aar'
name 'libsuperuser'
url 'https://github.com/Chainfire/libsuperuser'
licenses {
license {
name 'The Apache Software License, Version 2.0'
url 'http://www.apache.org/licenses/LICENSE-2.0.txt'
}
}
developers {
developer {
id 'Chainfire'
name 'Jorrit Jongma'
}
}
scm {
connection 'https://github.com/Chainfire/libsuperuser.git'
developerConnection 'https://github.com/Chainfire/libsuperuser.git'
url 'https://github.com/Chainfire/libsuperuser.git'
}
}
}
}
}
dependencies {
}
@ -102,4 +50,4 @@ artifacts {
task findConventions << {
println project.getConvention()
}
}