-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbintrayconfig.gradle
executable file
·50 lines (43 loc) · 1.4 KB
/
bintrayconfig.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
// Set default
ext.modulePackageId = ""
if (!project.rootProject.file('local.properties').exists()) {
println "Not applying bintrayconfig.gradle"
return
}
apply plugin: 'com.novoda.bintray-release'
def getBintrayUserAndKey() {
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
return [
properties.getProperty("bintray.user"),
properties.getProperty("bintray.apikey")
]
}
if (versions == null || versions.publishVersion == null) {
throw new IllegalStateException("Unable to reference publishVersion")
}
task checkBintrayConfig {
doLast {
def (user, key) = getBintrayUserAndKey()
if (user == null || user.isEmpty() ||
key == null || key.isEmpty()) {
throw new IllegalStateException("Must specify Bintray user/API key in your local.properties.")
}
}
}
afterEvaluate {
bintrayUpload.dependsOn checkBintrayConfig
}
def (user, key) = getBintrayUserAndKey()
publish {
bintrayUser = user
bintrayKey = key
userOrg = 'r4sh33d'
groupId = 'com.r4sh33d'
artifactId = 'SlidingUpMenu'
publishVersion = versions.publishVersion
desc = '🚀 A library that allows you to present menu items (from menu resource and/or other sources) to users as a bottom sheet.'
website = 'https://github.com/r4sh33d/SlidingUpMenu'
dryRun = false
}
ext.modulePackageId = publish.groupId + '.' + publish.artifactId