forked from allure-framework/allure-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbintray.gradle
More file actions
31 lines (26 loc) · 976 Bytes
/
bintray.gradle
File metadata and controls
31 lines (26 loc) · 976 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'
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
pkg {
userOrg = 'qameta'
repo = 'maven'
name = 'allure-java'
desc = 'Allure Java integrations'
websiteUrl = 'https://github.com/allure-framework/allure-java'
issueTrackerUrl = 'https://github.com/allure-framework/allure-java'
vcsUrl = 'https://github.com/allure-framework/allure-java.git'
licenses = ['Apache-2.0']
githubRepo = 'allure-framework/allure-java'
githubReleaseNotesFile = 'README.md'
version {
name = project.version
released = new Date()
gpg {
sign = true
}
}
}
}