Skip to content

Commit 5a77bf6

Browse files
committed
updates to rsocket 1.0.0-RC2
Signed-off-by: Oleh Dokuka <shadowgun@i.ua>
1 parent c9cee99 commit 5a77bf6

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Please find release notes at [https://github.com/rsocket/rsocket-rpc-java/releas
3131
For bugs, questions, and discussions please use the [Github Issues](https://github.com/netifi/rsocket-rpc-java/issues).
3232

3333
## License
34-
Copyright 2018 [Netifi Inc.](https://www.netifi.com)
34+
Copyright 2019 [Netifi Inc.](https://www.netifi.com)
3535

3636
Licensed under the Apache License, Version 2.0 (the "License");
3737
you may not use this file except in compliance with the License.

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ plugins {
77
id 'com.jfrog.bintray' version '1.8.4' apply false
88
id 'me.champeau.gradle.jmh' version '0.4.8' apply false
99
id 'io.morethan.jmhreport' version '0.9.0' apply false
10+
id 'com.google.protobuf' version '0.8.10' apply false
1011
}
1112

1213
apply from: 'artifactory.gradle'
@@ -33,8 +34,8 @@ subprojects {
3334
sourceCompatibility = 1.8
3435
targetCompatibility = 1.8
3536

36-
ext['reactor-bom.version'] = 'Californium-SR5'
37-
ext['rsocket.version'] = '0.12.2-RC2'
37+
ext['reactor-bom.version'] = 'Dysprosium-M3'
38+
ext['rsocket.version'] = '1.0.0-RC2'
3839

3940
ext['protobuf.version'] = '3.6.1'
4041
ext['log4j.version'] = '2.11.2'
@@ -52,6 +53,7 @@ subprojects {
5253

5354
repositories {
5455
jcenter()
56+
maven { url 'https://repo.spring.io/milestone' }
5557
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
5658
maven { url 'http://repo.spring.io/libs-snapshot' }
5759
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }

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.18
2+
version=0.2.19

rsocket-rpc-core/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import static org.apache.tools.ant.taskdefs.condition.Os.*
22

33
plugins {
44
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
5-
id 'com.google.protobuf' version '0.8.8'
5+
id 'com.google.protobuf'
66
}
77

88
description = 'RSocket RPC Library'

rsocket-rpc-metrics-idl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.google.protobuf' version '0.8.8'
2+
id 'com.google.protobuf'
33
}
44

55
description = 'RSocket RPC Metrics IDL'

rsocket-rpc-protobuf-idl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'com.google.protobuf' version '0.8.8'
2+
id 'com.google.protobuf'
33
}
44

55
description = 'RSocket RPC Protobf IDL'

0 commit comments

Comments
 (0)