aboutsummaryrefslogtreecommitdiff
path: root/gradle
diff options
context:
space:
mode:
authorCedric Beust <cedric@beust.com>2015-07-10 11:03:26 -0700
committerCedric Beust <cedric@beust.com>2015-07-10 11:03:26 -0700
commit5662db9861f214b7a820a5bb80a111deca61fcd6 (patch)
treeb9b3a472ceda8b11ec1933f9cb19137a12d4bcfa /gradle
parent64f4ac13ff7709e3c74367bbdf7d2a998d256005 (diff)
downloadtestng-5662db9861f214b7a820a5bb80a111deca61fcd6.tar.gz
Fixes for Nexus publishing.
Diffstat (limited to 'gradle')
-rw-r--r--gradle/publishing.gradle7
1 files changed, 7 insertions, 0 deletions
diff --git a/gradle/publishing.gradle b/gradle/publishing.gradle
index 178fd4fc..8e866ae7 100644
--- a/gradle/publishing.gradle
+++ b/gradle/publishing.gradle
@@ -46,6 +46,8 @@ bintray {
user = properties.getProperty("bintray.user")
key = properties.getProperty("bintray.apikey")
publications = ['mavenCustom']
+ // Without this, javadocs don't get uploaded
+ configurations = ['archives']
pkg {
repo = 'maven'
name = 'testng'
@@ -55,6 +57,11 @@ bintray {
version {
name = project.version //Bintray logical version name
+ gpg {
+ // Without this, .asc files don't get generated
+ sign = true
+ }
+
}
}
}