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 08343a5 commit 4cd7881Copy full SHA for 4cd7881
Parse/build.gradle
@@ -232,6 +232,7 @@ bintray {
232
233
publications = ["MyPublication"]
234
235
+ publish = true
236
pkg {
237
repo = 'maven'
238
name = 'com.parse:parse-android'
@@ -243,6 +244,14 @@ bintray {
243
244
desc = projDescription
245
released = new Date()
246
vcsTag = project.version
247
+
248
+ // Sonatype username/passwrod must be set for this operation to happen
249
+ mavenCentralSync {
250
+ sync = true
251
+ user = ossrhUsername
252
+ password = ossrhPassword
253
+ close = '1' // release automatically
254
+ }
255
}
256
257
0 commit comments