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') {
95
95
96
96
apply from : file(' ../gradle/java.gradle' )
97
97
}
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
84
84
```
85
85
Protobuf {
86
86
protoc {
87
- artifact = 'com.google.Protobuf:protoc:3.6.0 '
87
+ artifact = 'com.google.Protobuf:protoc:3.6.1 '
88
88
}
89
89
plugins {
90
90
rsocketRpc {
91
- artifact = 'io.netifi.proteus:proteus-java :0.7 .x'
91
+ artifact = 'io.rsocket.rpc:rsocket-rpc-protobuf :0.2 .x'
92
92
}
93
93
}
94
94
generateProtoTasks {
@@ -101,10 +101,10 @@ Protobuf {
101
101
// If you use Intellij add this so it can find the generated classes
102
102
idea {
103
103
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");
108
108
}
109
109
}
110
110
```
Original file line number Diff line number Diff line change 1
1
group =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 {
34
34
}
35
35
build. dependsOn ciVersion
36
36
37
+ ext {
38
+ rsocketRpcVersion = ' 0.2.1'
39
+ protobufVersion = ' 3.6.1'
40
+ }
41
+
37
42
repositories {
38
43
jcenter()
39
44
mavenLocal()
@@ -83,14 +88,14 @@ dependencies {
83
88
testCompile ' junit:junit:4.12'
84
89
85
90
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 "
88
93
testCompile ' org.hdrhistogram:HdrHistogram:2.1.10'
89
94
testCompile ' org.apache.logging.log4j:log4j-api:2.9.0'
90
95
testCompile ' org.apache.logging.log4j:log4j-core:2.9.0'
91
96
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 '
94
99
testCompile ' org.mockito:mockito-all:1.10.19'
95
100
}
96
101
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ plugins {
3
3
}
4
4
5
5
dependencies {
6
- protobuf ' com.google.protobuf:protobuf-java:3.6.0 '
6
+ protobuf " com.google.protobuf:protobuf-java:$p rotobufVersion "
7
7
}
8
8
9
9
protobuf {
10
10
protoc {
11
- artifact = ' com.google.protobuf:protoc:3.6.0 '
11
+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
12
12
}
13
13
generateProtoTasks {
14
14
all()* . enabled = false
Original file line number Diff line number Diff line change 1
1
dependencies {
2
- compile ' io.netty:netty-buffer:4.1.24 .Final'
2
+ compile ' io.netty:netty-buffer:4.1.29 .Final'
3
3
}
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ plugins {
3
3
}
4
4
5
5
dependencies {
6
- protobuf ' com.google.protobuf:protobuf-java:3.6.0 '
6
+ protobuf " com.google.protobuf:protobuf-java:$p rotobufVersion "
7
7
}
8
8
9
9
protobuf {
10
10
protoc {
11
- artifact = ' com.google.protobuf:protoc:3.6.0 '
11
+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
12
12
}
13
13
generateProtoTasks {
14
14
all()* . enabled = false
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ dependencies {
8
8
9
9
protobuf {
10
10
protoc {
11
- artifact = ' com.google.protobuf:protoc:3.6.0 '
11
+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
12
12
}
13
13
generateProtoTasks {
14
14
all()* . enabled = false
Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ dependencies {
12
12
compile project (' :proteus-frames' )
13
13
compile ' com.typesafe:config:1.3.2'
14
14
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 "
16
16
compile ' io.netty:netty-tcnative:2.0.14.Final:linux-x86_64'
17
17
18
- testProtobuf ' io.rsocket.rpc:rsocket-rpc-protobuf-idl:0.2.0 '
18
+ testProtobuf " io.rsocket.rpc:rsocket-rpc-protobuf-idl:$r socketRpcVersion "
19
19
testCompile project(' :proteus-tracing-openzipkin' )
20
20
testCompile project(' :proteus-metrics-micrometer' )
21
21
testCompile ' io.micrometer:micrometer-registry-atlas:1.0.6'
@@ -30,11 +30,11 @@ protobuf {
30
30
generatedFilesBaseDir = " ${ projectDir} /src/generated"
31
31
32
32
protoc {
33
- artifact = ' com.google.protobuf:protoc:3.6.0 '
33
+ artifact = " com.google.protobuf:protoc:$p rotobufVersion "
34
34
}
35
35
plugins {
36
36
rsocketRpc {
37
- artifact = ' io.rsocket.rpc:rsocket-rpc-protobuf:0.2.0 '
37
+ artifact = " io.rsocket.rpc:rsocket-rpc-protobuf:$r socketRpcVersion "
38
38
}
39
39
}
40
40
generateProtoTasks {
Original file line number Diff line number Diff line change 1
1
dependencies {
2
- compile ' io.rsocket:rsocket-core:0.11.5 '
2
+ compile ' io.rsocket:rsocket-core:0.11.6 '
3
3
}
You can’t perform that action at this time.
0 commit comments