We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecaa773 commit 977de9aCopy full SHA for 977de9a
build.gradle
@@ -5,6 +5,7 @@ plugins {
5
id 'groovy'
6
id 'maven-publish'
7
id 'com.jfrog.bintray' version '1.8.5'
8
+ id 'nu.studer.credentials' version '2.1'
9
id 'com.github.rodm.teamcity-server' version '1.2.2' // see https://github.com/rodm/gradle-teamcity-plugin
10
id 'com.github.rodm.teamcity-environments' version '1.2.2'
11
}
@@ -87,8 +88,8 @@ publishing.publications {
87
88
89
90
bintray {
- user = findProperty('bintrayUser')
91
- key = findProperty('bintrayKey')
+ user = credentials.BINTRAY_USER
92
+ key = credentials.BINTRAY_API_KEY
93
publications = ['PluginPublication']
94
95
dryRun = true
0 commit comments