Skip to content

Commit

Permalink
protobuf to 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mdavis95 committed Sep 20, 2019
1 parent a744b95 commit 19aee6b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 2 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
org.gradle.jvmargs=-Djavax.xml.accessExternalSchema=all
luceneVersion=8.2.0
mongoDriverVersion=3.11.0
grpcVersion=1.23.0
grpcVersion=1.23.0
protobufVersion=3.9.0
3 changes: 2 additions & 1 deletion zulia-common/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ description = "Zulia Common"

val grpcVersion: String by project
val mongoDriverVersion: String by project
val protobufVersion: String by project


dependencies {
Expand All @@ -29,7 +30,7 @@ dependencies {
protobuf {

protoc {
artifact = "com.google.protobuf:protoc:3.7.1"
artifact = "com.google.protobuf:protoc:$protobufVersion"
}
plugins {
id("grpc") {
Expand Down
3 changes: 2 additions & 1 deletion zulia-server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description = "Zulia Server"

val luceneVersion: String by project
val mongoDriverVersion: String by project
val protobufVersion: String by project

defaultTasks("build", "installDist")

Expand All @@ -27,7 +28,7 @@ dependencies {
compile("javax.xml.bind:jaxb-api:2.3.0")
compile("javax.annotation:javax.annotation-api:1.3.2")

compile("com.google.protobuf:protobuf-java-util:3.7.1")
compile("com.google.protobuf:protobuf-java-util:$protobufVersion")

compile("com.cedarsoftware:json-io:4.10.1")

Expand Down

0 comments on commit 19aee6b

Please sign in to comment.