-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbintray.gradle
More file actions
31 lines (28 loc) · 924 Bytes
/
Copy pathbintray.gradle
File metadata and controls
31 lines (28 loc) · 924 Bytes
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
apply plugin: 'com.jfrog.bintray'
apply from: '../publish.gradle'
bintray {
if (System.getenv("BINTRAY_USER") != null && System.getenv("BINTRAY_KEY") != null) {
user = System.getenv("BINTRAY_USER")
key = System.getenv("BINTRAY_KEY")
}
publications = ["release"]
override = true
pkg {
dryRun = false
publish = true
repo = 'aevi-uk'
name = project.name
userOrg = 'aevi'
licenses = ['LGPL-2.1']
labels = ['android', 'qrcode']
websiteUrl = 'https://github.com/Aevi-UK/barcode-scanner'
vcsUrl = 'https://github.com/Aevi-UK/barcode-scanner.git'
issueTrackerUrl = 'https://github.com/Aevi-UK/barcode-scanner/issues'
publicDownloadNumbers = true
version {
name = project.getVersionName()
vcsTag = project.sha
desc = "QR code scanning library"
}
}
}