We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3de60ed commit e267ca5Copy full SHA for e267ca5
1 file changed
build.gradle
@@ -129,8 +129,12 @@ subprojects {
129
userOrg = 'graphql-java-kickstart'
130
version {
131
name = project.version
132
+ gpg {
133
+ sign = true
134
+ }
135
mavenCentralSync {
- close = '1'
136
+ user = System.env.OSS_USER_TOKEN_KEY ?: project.findProperty('OSS_USER_TOKEN_KEY') ?: ''
137
+ password = System.env.OSS_USER_TOKEN_PASS ?: project.findProperty('OSS_USER_TOKEN_PASS') ?: ''
138
}
139
140
0 commit comments