You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
127
-
user = project.bintrayUser
128
-
key = project.bintrayKey
129
-
}
130
119
131
-
if (project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
132
-
sync.sync =true
133
-
user = project.sonatypeUsername
134
-
password = project.sonatypePassword
135
-
close ='1'//Optional property. By default the staging repository is closed and artifacts are released to Maven Central. You can optionally turn this behaviour off (by puting 0 as value) and release the version manually.
120
+
version {
121
+
name =VERSION_NAME
122
+
vcsTag =VERSION_NAME
123
+
124
+
mavenCentralSync {
125
+
sync =true
126
+
user = project.sonatypeUsername
127
+
password = project.sonatypePassword
128
+
}
136
129
}
130
+
137
131
}
138
132
}
133
+
134
+
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
0 commit comments