Skip to content

Commit 60443a9

Browse files
Add grpc to edge test
1 parent dfbe47d commit 60443a9

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ ext {
6666
// Edge Dependencies are used by tests to validate the SDK with the latest version of various libraries.
6767
// Not just the version of the library the SDK is built against.
6868
protoVersionEdge = '4.30.2'
69+
grpcVersionEdge = '1.72.0'
6970
}
7071

7172
apply from: "$rootDir/gradle/versioning.gradle"

temporal-sdk/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ dependencies {
3232
if (project.hasProperty("edgeDepsTest")) {
3333
testRuntimeOnly "com.google.protobuf:protobuf-java:$protoVersionEdge"
3434
testRuntimeOnly "com.google.protobuf:protobuf-java-util:$protoVersionEdge"
35+
testRuntimeOnly "io.grpc:grpc-bom:$grpcVersionEdge"
3536
}
3637
}
3738

temporal-serviceclient/build.gradle

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ dependencies {
3030
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
3131

3232
if (project.hasProperty("edgeDepsTest")) {
33-
testRuntimeOnly "com.google.protobuf:protobuf-java:4.29.3"
34-
testRuntimeOnly "com.google.protobuf:protobuf-java-util:4.29.3"
33+
testRuntimeOnly "com.google.protobuf:protobuf-java:$protoVersionEdge"
34+
testRuntimeOnly "com.google.protobuf:protobuf-java-util:$protoVersionEdge"
35+
testRuntimeOnly "io.grpc:grpc-bom:$grpcVersionEdge"
3536
}
3637
testRuntimeOnly "ch.qos.logback:logback-classic:${logbackVersion}"
3738
}

0 commit comments

Comments
 (0)