Skip to content
This repository has been archived by the owner on May 4, 2019. It is now read-only.

Commit

Permalink
Merge branch 'release/0.9.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
rdegnan committed Sep 11, 2018
2 parents 168642f + 6fbdde0 commit 0bebe41
Show file tree
Hide file tree
Showing 9 changed files with 23 additions and 19 deletions.
6 changes: 3 additions & 3 deletions gradle/java.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -83,14 +83,14 @@ dependencies {
testCompile 'junit:junit:4.12'

testCompile 'javax.inject:javax.inject:1'
testCompile 'io.projectreactor:reactor-test:3.1.9.RELEASE'
testCompile 'io.projectreactor:reactor-test:3.1.7.RELEASE'
testCompile 'com.google.protobuf:protobuf-java:3.6.0'
testCompile 'org.hdrhistogram:HdrHistogram:2.1.10'
testCompile 'org.apache.logging.log4j:log4j-api:2.9.0'
testCompile 'org.apache.logging.log4j:log4j-core:2.9.0'
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.0'
testCompile 'io.rsocket:rsocket-transport-netty:0.11.6'
testCompile 'io.rsocket:rsocket-transport-local:0.11.6'
testCompile 'io.rsocket:rsocket-transport-netty:0.11.5'
testCompile 'io.rsocket:rsocket-transport-local:0.11.5'
testCompile 'org.mockito:mockito-all:1.10.19'
}

Expand Down
2 changes: 1 addition & 1 deletion proteus-auth/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
compile 'io.netty:netty-buffer:4.1.29.Final'
compile 'io.netty:netty-buffer:4.1.24.Final'
}
6 changes: 3 additions & 3 deletions proteus-client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ dependencies {
compile project (':proteus-frames')
compile 'com.typesafe:config:1.3.2'
compile 'com.google.guava:guava:22.0'
compile 'io.rsocket.rpc:rsocket-rpc-core:0.2.1'
compile 'io.rsocket.rpc:rsocket-rpc-core:0.2.0'
compile 'io.netty:netty-tcnative:2.0.14.Final:linux-x86_64'

testProtobuf 'io.rsocket.rpc:rsocket-rpc-protobuf-idl:0.2.1'
testProtobuf 'io.rsocket.rpc:rsocket-rpc-protobuf-idl:0.2.0'
testCompile project(':proteus-tracing-openzipkin')
testCompile project(':proteus-metrics-micrometer')
testCompile 'io.micrometer:micrometer-registry-atlas:1.0.6'
Expand All @@ -34,7 +34,7 @@ protobuf {
}
plugins {
rsocketRpc {
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
}
}
generateProtoTasks {
Expand Down
4 changes: 4 additions & 0 deletions proteus-client/src/main/java/io/netifi/proteus/Proteus.java
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,10 @@ public ProteusSocket group(String group) {
return brokerService.group(group);
}

public ProteusSocket broadcast(String group) {
return brokerService.broadcast(group);
}

public long getAccesskey() {
return accesskey;
}
Expand Down
2 changes: 1 addition & 1 deletion proteus-frames/build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
dependencies {
compile 'io.rsocket:rsocket-core:0.11.6'
compile 'io.rsocket:rsocket-core:0.11.5'
}
6 changes: 3 additions & 3 deletions proteus-metrics-micrometer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ targetCompatibility = 1.8

dependencies {
compile project (':proteus-client')
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
protobuf 'io.rsocket.rpc:rsocket-rpc-metrics-idl:0.2.1'
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
protobuf 'io.rsocket.rpc:rsocket-rpc-metrics-idl:0.2.0'
compile 'io.micrometer:micrometer-registry-atlas:1.0.6'
}

Expand All @@ -20,7 +20,7 @@ protobuf {
}
plugins {
rsocketRpc {
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
}
}
generateProtoTasks {
Expand Down
6 changes: 3 additions & 3 deletions proteus-metrics-prometheus/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ targetCompatibility = 1.8

dependencies {
compile project (':proteus-client')
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
protobuf 'io.rsocket.rpc:rsocket-rpc-metrics-idl:0.2.1'
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
protobuf 'io.rsocket.rpc:rsocket-rpc-metrics-idl:0.2.0'
compile 'io.micrometer:micrometer-registry-prometheus:1.0.6'

testCompile 'org.apache.logging.log4j:log4j-api:2.9.0'
Expand All @@ -24,7 +24,7 @@ protobuf {
}
plugins {
rsocketRpc {
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
}
}
generateProtoTasks {
Expand Down
6 changes: 3 additions & 3 deletions proteus-tracing-openzipkin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8

dependencies {
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
protobuf project (':proteus-tracing-idl')
compile project (':proteus-client')

compile 'io.projectreactor.addons:reactor-adapter:3.1.7.RELEASE'
compile 'io.projectreactor.addons:reactor-adapter:3.1.6.RELEASE'
compile 'com.google.protobuf:protobuf-java-util:3.6.0'

compile 'io.opentracing:opentracing-api:0.31.0'
Expand All @@ -31,7 +31,7 @@ protobuf {
}
plugins {
rsocketRpc {
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
}
}
generateProtoTasks {
Expand Down
4 changes: 2 additions & 2 deletions proteus-vizceral/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies {
protobuf project (':proteus-vizceral-idl')
compile project (':proteus-client')
compile project (':proteus-tracing-openzipkin')
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
compile 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
testCompile 'com.fasterxml.jackson.core:jackson-core:2.9.6'
}

Expand All @@ -21,7 +21,7 @@ protobuf {
}
plugins {
rsocketRpc {
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.1'
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
}
}
generateProtoTasks {
Expand Down

0 comments on commit 0bebe41

Please sign in to comment.