-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbintray.gradle
34 lines (30 loc) · 877 Bytes
/
bintray.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
apply plugin: 'com.jfrog.bintray'
/** Settings necessary for synchronisation with JCenter
*
* Note of warning, if the pom-default.xml is missing, don't forget to run
* ./gradlew install first.
*/
bintray {
user = bintrayUser
key = bintrayApiKey
configurations = ['archives']
pkg {
repo = 'maven'
name = libraryName
userOrg = 'hgyllensvard'
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/HGyllensvard/geofencemanager.git'
publish = true
publicDownloadNumbers = true
version {
name = projectVersion
desc = 'Library to help managing geofences in a graphical maner'
released = new Date()
vcsTag = projectVersion
gpg {
sign = true
passphrase = bintrayGpgPassword
}
}
}
}