Gradle: Upgrade dependency versions. (#193)

pull/194/head
Yang Song 6 years ago committed by GitHub
parent e43d650b9d
commit 7d01b0b78a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 11
      build.gradle

@ -25,16 +25,17 @@ jar.manifest {
'Target-Compatibility': targetCompatibility) 'Target-Compatibility': targetCompatibility)
} }
def protobufVersion = '3.5.1' def protobufVersion = '3.7.0'
def protocVersion = '3.5.1' def protocVersion = '3.7.0'
def grpcVersion = "1.14.0" // CURRENT_GRPC_VERSION def grpcVersion = "1.19.0" // CURRENT_GRPC_VERSION
def javaxAnnotationVersion = '1.3.2'
buildscript { buildscript {
repositories { repositories {
maven { url "https://plugins.gradle.org/m2/" } maven { url "https://plugins.gradle.org/m2/" }
} }
dependencies { dependencies {
classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.6" classpath "com.google.protobuf:protobuf-gradle-plugin:0.8.8"
} }
} }
@ -51,7 +52,7 @@ dependencies {
"io.grpc:grpc-protobuf:${grpcVersion}", "io.grpc:grpc-protobuf:${grpcVersion}",
"io.grpc:grpc-stub:${grpcVersion}" "io.grpc:grpc-stub:${grpcVersion}"
compileOnly "javax.annotation:javax.annotation-api:1.2" compileOnly "javax.annotation:javax.annotation-api:${javaxAnnotationVersion}"
} }
protobuf { protobuf {

Loading…
Cancel
Save