Skip to content

Commit

Permalink
updates to rsocket 1.0.0-RC2
Browse files Browse the repository at this point in the history
Signed-off-by: Oleh Dokuka <[email protected]>
  • Loading branch information
OlegDokuka committed Aug 1, 2019
1 parent c9cee99 commit 5a77bf6
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Please find release notes at [https://github.com/rsocket/rsocket-rpc-java/releas
For bugs, questions, and discussions please use the [Github Issues](https://github.com/netifi/rsocket-rpc-java/issues).

## License
Copyright 2018 [Netifi Inc.](https://www.netifi.com)
Copyright 2019 [Netifi Inc.](https://www.netifi.com)

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
6 changes: 4 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ plugins {
id 'com.jfrog.bintray' version '1.8.4' apply false
id 'me.champeau.gradle.jmh' version '0.4.8' apply false
id 'io.morethan.jmhreport' version '0.9.0' apply false
id 'com.google.protobuf' version '0.8.10' apply false
}

apply from: 'artifactory.gradle'
Expand All @@ -33,8 +34,8 @@ subprojects {
sourceCompatibility = 1.8
targetCompatibility = 1.8

ext['reactor-bom.version'] = 'Californium-SR5'
ext['rsocket.version'] = '0.12.2-RC2'
ext['reactor-bom.version'] = 'Dysprosium-M3'
ext['rsocket.version'] = '1.0.0-RC2'

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

repositories {
jcenter()
maven { url 'https://repo.spring.io/milestone' }
if (version.endsWith('BUILD-SNAPSHOT') || project.hasProperty('platformVersion')) {
maven { url 'http://repo.spring.io/libs-snapshot' }
maven { url 'https://oss.jfrog.org/oss-snapshot-local' }
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
group=io.rsocket.rpc
version=0.2.18
version=0.2.19
2 changes: 1 addition & 1 deletion rsocket-rpc-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import static org.apache.tools.ant.taskdefs.condition.Os.*

plugins {
id 'io.spring.dependency-management' version '1.0.7.RELEASE'
id 'com.google.protobuf' version '0.8.8'
id 'com.google.protobuf'
}

description = 'RSocket RPC Library'
Expand Down
2 changes: 1 addition & 1 deletion rsocket-rpc-metrics-idl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.google.protobuf' version '0.8.8'
id 'com.google.protobuf'
}

description = 'RSocket RPC Metrics IDL'
Expand Down
2 changes: 1 addition & 1 deletion rsocket-rpc-protobuf-idl/build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id 'com.google.protobuf' version '0.8.8'
id 'com.google.protobuf'
}

description = 'RSocket RPC Protobf IDL'
Expand Down

0 comments on commit 5a77bf6

Please sign in to comment.