Skip to content

Commit

Permalink
upgrade grpc,guava and protobuf minor versions (#271)
Browse files Browse the repository at this point in the history
Signed-off-by: Kaushal Kumar <[email protected]>

Signed-off-by: Kaushal Kumar <[email protected]>
Co-authored-by: Kaushal Kumar <[email protected]>
  • Loading branch information
kaushalmahi12 and Kaushal Kumar authored Jan 19, 2023
1 parent 4c2093a commit 3139624
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -322,23 +322,23 @@ dependencies {
implementation 'org.bouncycastle:bcprov-jdk15on:1.70'
implementation 'org.bouncycastle:bcpkix-jdk15on:1.70'
implementation 'org.xerial:sqlite-jdbc:3.32.3.2'
implementation 'com.google.guava:guava:30.1-jre'
implementation 'com.google.guava:guava:31.1-jre'
implementation 'com.google.code.gson:gson:2.9.0'
implementation 'org.checkerframework:checker-qual:3.5.0'
implementation 'org.checkerframework:checker-qual:3.29.0'
implementation "com.fasterxml.jackson.core:jackson-annotations:${jacksonVersion}"
implementation "com.fasterxml.jackson.core:jackson-databind:${jacksonDataBindVersion}"
implementation group: 'org.apache.logging.log4j', name: 'log4j-api', version: '2.17.1'
implementation group: 'org.apache.logging.log4j', name: 'log4j-core', version: '2.17.1'
implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.9'
implementation group: 'commons-io', name: 'commons-io', version: '2.7'
implementation group: 'com.google.errorprone', name: 'error_prone_annotations', version: '2.9.0'
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.21.8'
implementation 'io.grpc:grpc-netty:1.49.0'
implementation 'io.grpc:grpc-protobuf:1.49.0'
implementation group: 'com.google.protobuf', name: 'protobuf-java', version: '3.21.12'
implementation 'io.grpc:grpc-netty:1.52.1'
implementation 'io.grpc:grpc-protobuf:1.52.1'
implementation('io.netty:netty-transport-native-unix-common:4.1.86.Final') {
force = 'true'
}
implementation 'io.grpc:grpc-stub:1.49.0'
implementation 'io.grpc:grpc-stub:1.52.1'
implementation 'javax.annotation:javax.annotation-api:1.3.2'

// JDK9+ has to run powermock 2+. https://github.com/powermock/powermock/issues/888
Expand All @@ -359,12 +359,12 @@ dependencies {

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.21.8"
artifact = "com.google.protobuf:protoc:3.21.12"
}

plugins {
grpc {
artifact = 'io.grpc:protoc-gen-grpc-java:1.44.0'
artifact = 'io.grpc:protoc-gen-grpc-java:1.52.1'
}

}
Expand Down

0 comments on commit 3139624

Please sign in to comment.