This repository was archived by the owner on May 4, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 16 files changed +45
-48
lines changed
proteus-access-key-info-idl
proteus-metrics-micrometer
proteus-metrics-prometheus
proteus-tracing-openzipkin Expand file tree Collapse file tree 16 files changed +45
-48
lines changed Original file line number Diff line number Diff 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- }
Original file line number Diff line number Diff line change @@ -84,11 +84,11 @@ Proteus Java uses a Protobuf plugin to generate application code. Add the follow
8484```
8585Protobuf {
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
102102idea {
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```
Original file line number Diff line number Diff line change 11group =io.netifi.proteus
2- version =0.9.2
2+ version =0.9.3
Original file line number Diff line number Diff line change @@ -34,6 +34,11 @@ task ciVersion {
3434}
3535build. dependsOn ciVersion
3636
37+ ext {
38+ rsocketRpcVersion = ' 0.2.1'
39+ protobufVersion = ' 3.6.1'
40+ }
41+
3742repositories {
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:$p rotobufVersion "
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
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ plugins {
33}
44
55dependencies {
6- protobuf ' com.google.protobuf:protobuf-java:3.6.0 '
6+ protobuf " com.google.protobuf:protobuf-java:$p rotobufVersion "
77}
88
99protobuf {
1010 protoc {
11- artifact = ' com.google.protobuf:protoc:3.6.0 '
11+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
1212 }
1313 generateProtoTasks {
1414 all()* . enabled = false
Original file line number Diff line number Diff line change 11dependencies {
2- compile ' io.netty:netty-buffer:4.1.24 .Final'
2+ compile ' io.netty:netty-buffer:4.1.29 .Final'
33}
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ plugins {
33}
44
55dependencies {
6- protobuf ' com.google.protobuf:protobuf-java:3.6.0 '
6+ protobuf " com.google.protobuf:protobuf-java:$p rotobufVersion "
77}
88
99protobuf {
1010 protoc {
11- artifact = ' com.google.protobuf:protoc:3.6.0 '
11+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
1212 }
1313 generateProtoTasks {
1414 all()* . enabled = false
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dependencies {
88
99protobuf {
1010 protoc {
11- artifact = ' com.google.protobuf:protoc:3.6.0 '
11+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
1212 }
1313 generateProtoTasks {
1414 all()* . enabled = false
Original file line number Diff line number Diff 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:$r socketRpcVersion "
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:$r socketRpcVersion "
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:$p rotobufVersion "
3434 }
3535 plugins {
3636 rsocketRpc {
37- artifact = ' io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0 '
37+ artifact = " io.rsocket.rpc:rsocket-rpc-protobuf:$r socketRpcVersion "
3838 }
3939 }
4040 generateProtoTasks {
Original file line number Diff line number Diff line change 11dependencies {
2- compile ' io.rsocket:rsocket-core:0.11.5 '
2+ compile ' io.rsocket:rsocket-core:0.11.6 '
33}
You can’t perform that action at this time.
0 commit comments