Skip to content

Commit

Permalink
use new publish-plugins version and fix bintray plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
aaschmid committed Apr 17, 2019
1 parent ea1ec24 commit bb5a225
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle
Expand Up @@ -8,7 +8,7 @@ plugins {

id 'maven'
id 'signing'
id 'com.gradle.plugin-publish' version '0.9.9'
id 'com.gradle.plugin-publish' version '0.10.1'
id 'com.jfrog.bintray' version '1.8.4'
}

Expand Down Expand Up @@ -211,19 +211,19 @@ uploadArchives {
}
}

if (!hasProperty('bintrayUser')) {
ext.bintrayUser = ''
if (!hasProperty('bintrayUsername')) {
ext.bintrayUsername = ''
}
if (!hasProperty('bintrayApiKey')) {
ext.bintrayApiKey = ''
}
bintray {
user = bintrayUser
user = bintrayUsername
key = bintrayApiKey
pkg {
repo = 'gradle-plugins'
name = 'gradle-cpd-plugin'
userOrg = bintrayUser
userOrg = bintrayUsername
licenses = ['Apache-2.0']
vcsUrl = 'https://github.com/aaschmid/gradle-cpd-plugin.git'
version {
Expand Down

0 comments on commit bb5a225

Please sign in to comment.