-
Notifications
You must be signed in to change notification settings - Fork 10
/
publish.gradle
32 lines (25 loc) · 1.15 KB
/
publish.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
subprojects {
apply plugin: 'com.jfrog.bintray'
bintray {
user = project.hasProperty('bintrayUser') ? project.property('bintrayUser') : System.getenv('BINTRAY_USER')
key = project.hasProperty('bintrayApiKey') ? project.property('bintrayApiKey') : System.getenv('BINTRAY_API_KEY')
configurations = ['archives']
publish = true
dryRun = project.hasProperty('dryRun') ? project.property('dryRun') : false
// override existing artifacts?
override = false
// metadata
pkg {
repo = 'cuba-components'
name = 'forgot-password'
websiteUrl = 'https://github.com/pfurini/cuba-component-forgot-password'
issueTrackerUrl = 'https://github.com/pfurini/cuba-component-forgot-password/issues'
vcsUrl = 'https://github.com/pfurini/cuba-component-forgot-password.git'
githubRepo = 'pfurini/cuba-component-forgot-password'
githubReleaseNotesFile = 'CHANGELOG.md'
publicDownloadNumbers = true
licenses = ["Apache-2.0"]
labels = ['cuba', 'cuba-platform', 'cuba-component']
}
}
}