Skip to content

Commit

Permalink
dependency version upgrades (#22)
Browse files Browse the repository at this point in the history
* dependency version upgrade

* fix test break
  • Loading branch information
mscheong01 committed Feb 23, 2024
1 parent 81b9ba3 commit 3f26e03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
14 changes: 7 additions & 7 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
plugins {
kotlin("jvm") version "1.7.20" apply false
id("com.google.protobuf") version "0.9.2" apply false
kotlin("jvm") version "1.9.22" apply false
id("com.google.protobuf") version "0.9.4" apply false
`maven-publish`
id("org.jlleitschuh.gradle.ktlint") version "11.3.1"
signing
Expand All @@ -11,11 +11,11 @@ if (project.hasProperty("releaseVersion")) {
version = project.property("releaseVersion") as String
}

ext["grpcJavaVersion"] = "1.54.0"
ext["grpcKotlinVersion"] = "1.3.0"
ext["protobufVersion"] = "3.22.2"
ext["coroutinesVersion"] = "1.6.2"
ext["kotlinPoetVersion"] = "1.12.0"
ext["grpcJavaVersion"] = "1.61.1"
ext["grpcKotlinVersion"] = "1.4.1"
ext["protobufVersion"] = "3.25.3"
ext["coroutinesVersion"] = "1.8.0"
ext["kotlinPoetVersion"] = "1.16.0"

repositories {
mavenCentral()
Expand Down
1 change: 1 addition & 0 deletions generator/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ dependencies {
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.2")
// https://mvnrepository.com/artifact/org.assertj/assertj-core
testImplementation("org.assertj:assertj-core:3.24.2")
testImplementation("io.grpc:grpc-inprocess:${rootProject.ext["grpcJavaVersion"]}")
testImplementation("io.grpc:grpc-testing:${rootProject.ext["grpcJavaVersion"]}")
}

Expand Down

0 comments on commit 3f26e03

Please sign in to comment.