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

Commit 50393c2

Browse files
committed
fix build
1 parent 64d999b commit 50393c2

File tree

9 files changed

+22
-4
lines changed

9 files changed

+22
-4
lines changed

broker-info-idl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
6-
protobuf project (':protobuf-rpc')
6+
protobuf project (':core-idl')
77

88
compile 'com.google.protobuf:protobuf-java:3.5.0'
99
}

broker-mgmt-idl/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
dependencies {
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'

build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
6270
project(':frames') {
6371
description = 'Netifi Proteus Frames'
6472
ext.artifactName = 'frames'

client/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ sourceCompatibility = 1.8
66
targetCompatibility = 1.8
77

88
dependencies {
9-
protobuf project (':protobuf-rpc')
9+
protobuf project (':core-idl')
1010
protobuf project (':broker-info-idl')
1111

1212
compile project (':core')

core-idl/build.gradle

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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.

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.7.3
2+
version=0.7.11

protobuf-rpc/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

settings.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ include 'broker-info-idl'
55
include 'broker-mgmt-idl'
66
include 'client'
77
include 'core'
8+
include 'core-idl'
89
include 'frames'
910
include 'metrics-idl'
1011
include 'protobuf-rpc'

0 commit comments

Comments
 (0)