Bump protobuf versions to current stable
Signed-off-by: Jonathan Oddy <jonathan.oddy@transferwise.com>
This commit is contained in:
parent
d27f540d81
commit
3be54af836
11
build.gradle
11
build.gradle
|
|
@ -17,9 +17,9 @@ buildscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
ext {
|
ext {
|
||||||
grpcVersion = '1.17.1'
|
grpcVersion = '1.21.0'
|
||||||
nettyVersion = '4.1.32.Final'
|
nettyVersion = '4.1.33.Final'
|
||||||
protobufProtocVersion = '3.6.1'
|
protobufProtocVersion = '3.7.1'
|
||||||
apacheCommonsVersion = '3.8.1'
|
apacheCommonsVersion = '3.8.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -62,8 +62,8 @@ repositories {
|
||||||
mavenCentral()
|
mavenCentral()
|
||||||
}
|
}
|
||||||
|
|
||||||
sourceCompatibility = 1.8
|
sourceCompatibility = JavaVersion.VERSION_1_8
|
||||||
targetCompatibility = 1.8
|
targetCompatibility = JavaVersion.VERSION_1_8
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation group: 'io.grpc', name: 'grpc-netty', version: "${grpcVersion}"
|
implementation group: 'io.grpc', name: 'grpc-netty', version: "${grpcVersion}"
|
||||||
|
|
@ -72,5 +72,6 @@ dependencies {
|
||||||
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: "${nettyVersion}", classifier: 'linux-x86_64'
|
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: "${nettyVersion}", classifier: 'linux-x86_64'
|
||||||
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: "${nettyVersion}", classifier: 'osx-x86_64'
|
implementation group: 'io.netty', name: 'netty-transport-native-kqueue', version: "${nettyVersion}", classifier: 'osx-x86_64'
|
||||||
implementation group: 'org.apache.commons', name: 'commons-lang3', version: "${apacheCommonsVersion}"
|
implementation group: 'org.apache.commons', name: 'commons-lang3', version: "${apacheCommonsVersion}"
|
||||||
|
compileOnly group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue