We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 947826f commit 17ec995Copy full SHA for 17ec995
build.gradle
@@ -37,15 +37,15 @@ plugindev {
37
}
38
39
bintray {
40
- user = hasProperty('bintrayUser') ? bintrayUser : ''
41
- key = hasProperty('bintrayApiKey') ? bintrayApiKey : ''
+ user = project.hasProperty('bintrayUser') ? bintrayUser : ''
+ key = project.hasProperty('bintrayApiKey') ? bintrayApiKey : ''
42
pkg {
43
repo = 'gradle-plugins'
44
userOrg = 'researchgate'
45
version {
46
gpg {
47
sign = true
48
- passphrase = hasProperty('bintrayGpgPassphrase') ? bintrayGpgPassphrase : ''
+ passphrase = project.hasProperty('bintrayGpgPassphrase') ? bintrayGpgPassphrase : ''
49
50
51
0 commit comments