Skip to content

Commit

Permalink
add client meta-module with grpc-netty & protobuf-java-util, update…
Browse files Browse the repository at this point in the history
… protobuf 3.5.1->3.6.0
  • Loading branch information
bsideup committed Jul 16, 2018
1 parent 7ed0650 commit 3c504bf
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,10 @@ configure(subprojects.findAll { !it.name.startsWith("examples/") }) {
dependencies {
dependency 'org.lognet:grpc-spring-boot-starter:2.3.2'

dependencySet(group: 'com.google.protobuf', version: '3.5.1') {
dependencySet(group: 'com.google.protobuf', version: '3.6.0') {
entry 'protoc'
entry 'protobuf-java'
entry 'protobuf-java-util'
}

dependency 'com.google.auto.service:auto-service:1.0-rc4'
Expand Down
10 changes: 10 additions & 0 deletions client/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
plugins {
id "java"
}

dependencies {
compile project(":protocol")

compile 'io.grpc:grpc-netty'
compile 'com.google.protobuf:protobuf-java-util'
}
1 change: 1 addition & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
include 'api'
include 'app'
include 'protocol'
include 'client'

include 'examples/java'
include 'examples/plugin'
Expand Down

0 comments on commit 3c504bf

Please sign in to comment.