We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 857b9c7 commit b5db6ffCopy full SHA for b5db6ff
build.gradle
@@ -155,8 +155,8 @@ release {
155
afterReleaseBuild.dependsOn bintrayUpload
156
157
bintray {
158
- user = System.getenv('BINTRAY_USER') ?: project.findProperty('BINTRAY_USER') ?: ''
159
- key = System.getenv('BINTRAY_KEY') ?: project.findProperty('BINTRAY_KEY') ?: ''
+ user = System.env.BINTRAY_USER ?: project.findProperty('BINTRAY_USER') ?: ''
+ key = System.env.BINTRAY_PASS ?: project.findProperty('BINTRAY_PASS') ?: ''
160
publications = ['maven']
161
publish = true
162
pkg {
gradle.properties
@@ -1,2 +1,2 @@
1
version = 6.1.4-SNAPSHOT
2
-group = com.graphql-java
+group = com.graphql-java-kickstart
0 commit comments