Skip to content

Commit

Permalink
Use publishing credentials stored via credentials plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
etiennestuder committed Aug 28, 2020
1 parent ecaa773 commit 977de9a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
id 'groovy'
id 'maven-publish'
id 'com.jfrog.bintray' version '1.8.5'
id 'nu.studer.credentials' version '2.1'
id 'com.github.rodm.teamcity-server' version '1.2.2' // see https://github.com/rodm/gradle-teamcity-plugin
id 'com.github.rodm.teamcity-environments' version '1.2.2'
}
Expand Down Expand Up @@ -87,8 +88,8 @@ publishing.publications {
}

bintray {
user = findProperty('bintrayUser')
key = findProperty('bintrayKey')
user = credentials.BINTRAY_USER
key = credentials.BINTRAY_API_KEY
publications = ['PluginPublication']

dryRun = true
Expand Down

0 comments on commit 977de9a

Please sign in to comment.