libsuperuser: remove maven and bintray stuff
This commit is contained in:
parent
c64c1a19b7
commit
6deac28a8b
@ -21,13 +21,6 @@ buildscript {
|
|||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:1.1.3'
|
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'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
2
extern/libsuperuser/build.gradle
vendored
2
extern/libsuperuser/build.gradle
vendored
@ -5,8 +5,6 @@ buildscript {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:1.0.0'
|
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'
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
54
extern/libsuperuser/libsuperuser/build.gradle
vendored
54
extern/libsuperuser/libsuperuser/build.gradle
vendored
@ -1,6 +1,4 @@
|
|||||||
apply plugin: 'com.android.library'
|
apply plugin: 'com.android.library'
|
||||||
apply plugin: 'com.github.dcendents.android-maven'
|
|
||||||
apply plugin: 'com.jfrog.bintray'
|
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 21
|
compileSdkVersion 21
|
||||||
@ -27,56 +25,6 @@ android {
|
|||||||
version = "1.0.0." + (new Date()).format('yyyyMMddHHmm')
|
version = "1.0.0." + (new Date()).format('yyyyMMddHHmm')
|
||||||
group = "eu.chainfire"
|
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 {
|
dependencies {
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -102,4 +50,4 @@ artifacts {
|
|||||||
|
|
||||||
task findConventions << {
|
task findConventions << {
|
||||||
println project.getConvention()
|
println project.getConvention()
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user