Skip to content

Commit

Permalink
Bump dependencies. (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
mofirouz authored Sep 21, 2022
1 parent 3a2aafb commit 04bf397
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ buildscript {
google()
}
dependencies {
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.17'
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.18'
}
}

plugins {
id 'com.github.johnrengelman.shadow' version '5.2.0'
id 'com.google.protobuf' version '0.8.17'
id 'com.google.protobuf' version '0.8.18'
id "io.freefair.lombok" version "5.1.1"
//for distTar which is called when importing this SDK w/ JitPack
id 'distribution'
Expand Down Expand Up @@ -77,26 +77,26 @@ dependencies {
// annotationProcessor 'org.projectlombok:lombok:1.18.12'
// implementation "org.projectlombok:lombok:1.18.12"

implementation 'com.google.code.gson:gson:2.8.6'
api 'io.grpc:grpc-protobuf-lite:1.31.1'
implementation 'com.google.code.gson:gson:2.8.9'
api 'io.grpc:grpc-protobuf-lite:1.43.2'
// listenable future is part of the SDK public API
api 'com.google.guava:guava:29.0-android'
implementation 'com.google.protobuf:protobuf-javalite:3.13.0'
api 'com.google.guava:guava:31.0.1-android'
implementation 'com.google.protobuf:protobuf-javalite:3.19.3'

implementation ('io.grpc:grpc-okhttp:1.48.0') {
exclude group: 'com.squareup.okio', module:'okio'
}

implementation 'com.squareup.okio:okio:2.7.0'
implementation 'com.squareup.okhttp3:okhttp:4.8.1'
implementation 'com.squareup.okio:okio:2.10.0'
implementation 'com.squareup.okhttp3:okhttp:4.9.3'
implementation 'javax.annotation:javax.annotation-api:1.3.2'
implementation 'io.grpc:grpc-netty-shaded:1.41.0'
implementation 'io.grpc:grpc-stub:1.41.0'
implementation 'io.grpc:grpc-netty-shaded:1.43.2'
implementation 'io.grpc:grpc-stub:1.43.2'
compileOnly 'org.apache.tomcat:annotations-api:6.0.53'
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.slf4j:slf4j-api:1.7.33'

protobuf 'com.google.api.grpc:proto-google-common-protos:2.1.0'
testCompile 'junit:junit:4.12'
protobuf 'com.google.api.grpc:proto-google-common-protos:2.7.1'
testCompile 'junit:junit:4.13.2'
}

sourceSets {
Expand Down Expand Up @@ -145,12 +145,12 @@ eclipse {

protobuf {
protoc {
artifact = 'com.google.protobuf:protoc:3.17.3'
artifact = 'com.google.protobuf:protoc:3.19.3'
}

plugins {
grpc {
artifact = "io.grpc:protoc-gen-grpc-java:1.41.0"
artifact = "io.grpc:protoc-gen-grpc-java:1.43.2"
}
}

Expand Down

0 comments on commit 04bf397

Please sign in to comment.