forked from cliqz-oss/nove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbintray.gradle
35 lines (30 loc) · 899 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
35
apply plugin: 'com.jfrog.bintray'
apply plugin: 'maven'
group = 'com.cliqz'
version = nove_version
def localPropsFile = new File(project.rootDir, 'local.properties')
def props = new Properties()
localPropsFile.withInputStream {
props.load(it)
}
bintray {
user = props['bintray.user']
key = props['bintray.api_key']
configurations = ['archives']
pkg {
repo = 'cliqz-oss'
userOrg = 'cliqz'
licenses = ['MPL-2.0']
websiteUrl = 'https://github.com/cliqz-oss/nove'
issueTrackerUrl = 'https://github.com/cliqz-oss/nove/issues'
vcsUrl = 'https://github.com/cliqz-oss/nove.git'
publicDownloadNumbers = true
githubRepo = 'cliqz-oss/nove'
githubReleaseNotesFile = 'README.md'
version {
name = nove_version
vcsTag = nove_version
released = new Date()
}
}
}