This repository was archived by the owner on May 4, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +22
-4
lines changed
Expand file tree Collapse file tree 9 files changed +22
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
33}
44
55dependencies {
6- protobuf project (' :protobuf-rpc ' )
6+ protobuf project (' :core-idl ' )
77
88 compile ' com.google.protobuf:protobuf-java:3.5.0'
99}
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ plugins {
33}
44
55dependencies {
6- protobuf project (' :protobuf-rpc ' )
6+ protobuf project (' :core-idl ' )
77 protobuf project (' :broker-info-idl' )
88
99 compile ' com.google.protobuf:protobuf-java:3.5.0'
Original file line number Diff line number Diff line change @@ -59,6 +59,14 @@ project(':core') {
5959 apply from : file(' ../gradle/java.gradle' )
6060}
6161
62+ project(' :core-idl' ) {
63+ description = ' Netifi Core Library'
64+ ext. artifactName = ' core-idl'
65+
66+ apply from : file(' ../gradle/release.gradle' )
67+ apply from : file(' ../gradle/java.gradle' )
68+ }
69+
6270project(' :frames' ) {
6371 description = ' Netifi Proteus Frames'
6472 ext. artifactName = ' frames'
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ sourceCompatibility = 1.8
66targetCompatibility = 1.8
77
88dependencies {
9- protobuf project (' :protobuf-rpc ' )
9+ protobuf project (' :core-idl ' )
1010 protobuf project (' :broker-info-idl' )
1111
1212 compile project (' :core' )
Original file line number Diff line number Diff line change 1+ plugins {
2+ id ' com.google.protobuf' version ' 0.8.5'
3+ }
4+
5+ dependencies {
6+ compile ' com.google.protobuf:protobuf-java:3.5.0'
7+ compile ' com.google.protobuf:protobuf-java-util:3.5.0'
8+ }
File renamed without changes.
Original file line number Diff line number Diff line change 11group =io.netifi.proteus
2- version =0.7.3
2+ version =0.7.11
Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ dependencies {
2323 compileOnly ' com.google.protobuf:protobuf-java-util:3.5.0'
2424
2525 testCompile project(' :core' )
26+ testProtobuf project (' :core-idl' )
2627 testCompile ' junit:junit:4.12'
2728}
2829
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ include 'broker-info-idl'
55include ' broker-mgmt-idl'
66include ' client'
77include ' core'
8+ include ' core-idl'
89include ' frames'
910include ' metrics-idl'
1011include ' protobuf-rpc'
You can’t perform that action at this time.
0 commit comments