Skip to content

Commit 3f3e54a

Browse files
committed
Override bintray publications
1 parent 3495300 commit 3f3e54a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

bintray.gradle

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
2525

2626
publications = ['maven']
2727
publish = true
28+
override = true
2829

2930
pkg {
3031
repo = 'RSocket'
@@ -50,7 +51,7 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
5051
mavenCentralSync {
5152
user = project.property('sonatypeUsername')
5253
password = project.property('sonatypePassword')
53-
close = project.property('stage') == 'Deploy' ? '1' : '0'
54+
close = project.findProperty('stage') == 'Deploy' ? '1' : '0'
5455
}
5556
}
5657
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=io.rsocket.rpc
2-
version=0.2.9
2+
version=0.2.10

0 commit comments

Comments
 (0)