Skip to content

Commit

Permalink
Upgraded dependencies
Browse files Browse the repository at this point in the history
protobuf added support for arm64 in version 3.20.1. See protocolbuffers/protobuf#8062

Also upgraded all other dependencies and plugins.

The project is now working on arm64.
  • Loading branch information
cesdperez committed Jun 9, 2022
1 parent 7fa2991 commit 5f28b67
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.gradle.kts
@@ -1,12 +1,12 @@
plugins {
id("com.google.protobuf") version "0.8.15" apply false
kotlin("jvm") version "1.4.32" apply false
id("com.google.protobuf") version "0.8.18" apply false
kotlin("jvm") version "1.7.0" apply false
}

// todo: move to subprojects, but how?
ext["grpcVersion"] = "1.37.0"
ext["grpcKotlinVersion"] = "1.1.0" // CURRENT_GRPC_KOTLIN_VERSION
ext["protobufVersion"] = "3.15.8"
ext["grpcVersion"] = "1.46.0"
ext["grpcKotlinVersion"] = "1.2.1" // CURRENT_GRPC_KOTLIN_VERSION
ext["protobufVersion"] = "3.20.1"

allprojects {
repositories {
Expand Down
1 change: 1 addition & 0 deletions stub/build.gradle.kts
Expand Up @@ -16,6 +16,7 @@ dependencies {
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3")

api("io.grpc:grpc-protobuf:${rootProject.ext["grpcVersion"]}")
api("io.grpc:grpc-stub:${rootProject.ext["grpcVersion"]}")
api("com.google.protobuf:protobuf-java-util:${rootProject.ext["protobufVersion"]}")
api("io.grpc:grpc-kotlin-stub:${rootProject.ext["grpcKotlinVersion"]}")
}
Expand Down

0 comments on commit 5f28b67

Please sign in to comment.