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

Commit 93d7157

Browse files
committed
Merge branch 'release/0.9.3'
2 parents d1748aa + 3cc7be0 commit 93d7157

File tree

16 files changed

+45
-48
lines changed

16 files changed

+45
-48
lines changed

build.gradle

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,3 @@ project(':proteus-vizceral-idl') {
9595

9696
apply from: file('../gradle/java.gradle')
9797
}
98-
99-
project(':proteus-vizceral') {
100-
description = 'Netifi Proteus Vizceral Service'
101-
ext.artifactName = 'proteus-vizceral'
102-
103-
apply from: file('../gradle/java.gradle')
104-
}

docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -84,11 +84,11 @@ Proteus Java uses a Protobuf plugin to generate application code. Add the follow
8484
```
8585
Protobuf {
8686
protoc {
87-
artifact = 'com.google.Protobuf:protoc:3.6.0'
87+
artifact = 'com.google.Protobuf:protoc:3.6.1'
8888
}
8989
plugins {
9090
rsocketRpc {
91-
artifact = 'io.netifi.proteus:proteus-java:0.7.x'
91+
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.x'
9292
}
9393
}
9494
generateProtoTasks {
@@ -101,10 +101,10 @@ Protobuf {
101101
// If you use Intellij add this so it can find the generated classes
102102
idea {
103103
module {
104-
sourceDirs += file("${projectDir}/build/generated/source/proto/main/java");
105-
sourceDirs += file("${projectDir}/build/generated/source/proto/main/proteus");
106-
sourceDirs += file("${projectDir}/build/generated/source/proto/test/java");
107-
sourceDirs += file("${projectDir}/build/generated/source/proto/test/proteus");
104+
sourceDirs += file("${projectDir}/build/generated/source/rsocketRpc/main/java");
105+
sourceDirs += file("${projectDir}/build/generated/source/rsocketRpc/main/proteus");
106+
sourceDirs += file("${projectDir}/build/generated/source/rsocketRpc/test/java");
107+
sourceDirs += file("${projectDir}/build/generated/source/rsocketRpc/test/proteus");
108108
}
109109
}
110110
```

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
group=io.netifi.proteus
2-
version=0.9.2
2+
version=0.9.3

gradle/java.gradle

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ task ciVersion {
3434
}
3535
build.dependsOn ciVersion
3636

37+
ext {
38+
rsocketRpcVersion = '0.2.1'
39+
protobufVersion = '3.6.1'
40+
}
41+
3742
repositories {
3843
jcenter()
3944
mavenLocal()
@@ -83,14 +88,14 @@ dependencies {
8388
testCompile 'junit:junit:4.12'
8489

8590
testCompile 'javax.inject:javax.inject:1'
86-
testCompile 'io.projectreactor:reactor-test:3.1.7.RELEASE'
87-
testCompile 'com.google.protobuf:protobuf-java:3.6.0'
91+
testCompile 'io.projectreactor:reactor-test:3.1.9.RELEASE'
92+
testCompile "com.google.protobuf:protobuf-java:$protobufVersion"
8893
testCompile 'org.hdrhistogram:HdrHistogram:2.1.10'
8994
testCompile 'org.apache.logging.log4j:log4j-api:2.9.0'
9095
testCompile 'org.apache.logging.log4j:log4j-core:2.9.0'
9196
testCompile 'org.apache.logging.log4j:log4j-slf4j-impl:2.9.0'
92-
testCompile 'io.rsocket:rsocket-transport-netty:0.11.5'
93-
testCompile 'io.rsocket:rsocket-transport-local:0.11.5'
97+
testCompile 'io.rsocket:rsocket-transport-netty:0.11.6'
98+
testCompile 'io.rsocket:rsocket-transport-local:0.11.6'
9499
testCompile 'org.mockito:mockito-all:1.10.19'
95100
}
96101

proteus-access-key-info-idl/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ plugins {
33
}
44

55
dependencies {
6-
protobuf 'com.google.protobuf:protobuf-java:3.6.0'
6+
protobuf "com.google.protobuf:protobuf-java:$protobufVersion"
77
}
88

99
protobuf {
1010
protoc {
11-
artifact = 'com.google.protobuf:protoc:3.6.0'
11+
artifact = "com.google.protobuf:protoc:$protobufVersion"
1212
}
1313
generateProtoTasks {
1414
all()*.enabled = false

proteus-auth/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
dependencies {
2-
compile 'io.netty:netty-buffer:4.1.24.Final'
2+
compile 'io.netty:netty-buffer:4.1.29.Final'
33
}

proteus-broker-info-idl/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ plugins {
33
}
44

55
dependencies {
6-
protobuf 'com.google.protobuf:protobuf-java:3.6.0'
6+
protobuf "com.google.protobuf:protobuf-java:$protobufVersion"
77
}
88

99
protobuf {
1010
protoc {
11-
artifact = 'com.google.protobuf:protoc:3.6.0'
11+
artifact = "com.google.protobuf:protoc:$protobufVersion"
1212
}
1313
generateProtoTasks {
1414
all()*.enabled = false

proteus-broker-mgmt-idl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dependencies {
88

99
protobuf {
1010
protoc {
11-
artifact = 'com.google.protobuf:protoc:3.6.0'
11+
artifact = "com.google.protobuf:protoc:$protobufVersion"
1212
}
1313
generateProtoTasks {
1414
all()*.enabled = false

proteus-client/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ dependencies {
1212
compile project (':proteus-frames')
1313
compile 'com.typesafe:config:1.3.2'
1414
compile 'com.google.guava:guava:22.0'
15-
compile 'io.rsocket.rpc:rsocket-rpc-core:0.2.0'
15+
compile "io.rsocket.rpc:rsocket-rpc-core:$rsocketRpcVersion"
1616
compile 'io.netty:netty-tcnative:2.0.14.Final:linux-x86_64'
1717

18-
testProtobuf 'io.rsocket.rpc:rsocket-rpc-protobuf-idl:0.2.0'
18+
testProtobuf "io.rsocket.rpc:rsocket-rpc-protobuf-idl:$rsocketRpcVersion"
1919
testCompile project(':proteus-tracing-openzipkin')
2020
testCompile project(':proteus-metrics-micrometer')
2121
testCompile 'io.micrometer:micrometer-registry-atlas:1.0.6'
@@ -30,11 +30,11 @@ protobuf {
3030
generatedFilesBaseDir = "${projectDir}/src/generated"
3131

3232
protoc {
33-
artifact = 'com.google.protobuf:protoc:3.6.0'
33+
artifact = "com.google.protobuf:protoc:$protobufVersion"
3434
}
3535
plugins {
3636
rsocketRpc {
37-
artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0'
37+
artifact = "io.rsocket.rpc:rsocket-rpc-protobuf:$rsocketRpcVersion"
3838
}
3939
}
4040
generateProtoTasks {

proteus-frames/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
dependencies {
2-
compile 'io.rsocket:rsocket-core:0.11.5'
2+
compile 'io.rsocket:rsocket-core:0.11.6'
33
}

0 commit comments

Comments
 (0)