Skip to content

Commit 59b5f13

Browse files
committed
fix release
1 parent 157fbc7 commit 59b5f13

File tree

4 files changed

+8
-9
lines changed

4 files changed

+8
-9
lines changed

bintray.gradle

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
18-
project.hasProperty('sonatypeUsername') && project.hasProperty('sonatypePassword')) {
17+
if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey')) {
1918

2019
subprojects {
2120
plugins.withId('com.jfrog.bintray') {
@@ -48,8 +47,8 @@ if (project.hasProperty('bintrayUser') && project.hasProperty('bintrayKey') &&
4847
}
4948

5049
mavenCentralSync {
51-
user = project.property('sonatypeUsername')
52-
password = project.property('sonatypePassword')
50+
user = project.properties.getOrDefault('sonatypeUsername', '')
51+
password = project.properties.getOrDefault('sonatypePassword', '')
5352
}
5453
}
5554
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
plugins {
22
id 'java-library'
33
id 'com.google.protobuf' version '0.8.5' apply false
4-
id 'com.gradle.build-scan' version '1.15.1'
4+
id 'com.gradle.build-scan' version '1.16'
55
id 'com.google.osdetector' version '1.4.0'
66
id 'com.github.sherter.google-java-format' version '0.7.1' apply false
77
id 'com.github.johnrengelman.shadow' version '2.0.1' apply false
88
id 'com.jfrog.artifactory' version '4.7.3'
99
id 'com.jfrog.bintray' version '1.8.4'
1010
id 'io.spring.dependency-management' version '1.0.6.RELEASE' apply false
11-
id 'me.champeau.gradle.jmh' version '0.4.5' apply false
12-
id 'io.morethan.jmhreport' version '0.7.0' apply false
11+
id 'me.champeau.gradle.jmh' version '0.4.7' apply false
12+
id 'io.morethan.jmhreport' version '0.9.0' apply false
1313
}
1414

1515
apply from: 'artifactory.gradle'

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ protobuf {
8888
}
8989
plugins {
9090
rsocketRpc {
91-
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
91+
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.5'
9292
}
9393
}
9494
generateProtoTasks {

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.4
2+
version=0.2.5

0 commit comments

Comments
 (0)