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 3495300 commit 3f3e54aCopy full SHA for 3f3e54a
bintray.gradle
@@ -25,6 +25,7 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
25
26
publications = ['maven']
27
publish = true
28
+ override = true
29
30
pkg {
31
repo = 'RSocket'
@@ -50,7 +51,7 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
50
51
mavenCentralSync {
52
user = project.property('sonatypeUsername')
53
password = project.property('sonatypePassword')
- close = project.property('stage') == 'Deploy' ? '1' : '0'
54
+ close = project.findProperty('stage') == 'Deploy' ? '1' : '0'
55
}
56
57
gradle.properties
@@ -1,2 +1,2 @@
1
group=io.rsocket.rpc
2
-version=0.2.9
+version=0.2.10
0 commit comments