Skip to content

Commit

Permalink
Give up trying to update grpcVersion
Browse files Browse the repository at this point in the history
  • Loading branch information
Quinn-With-Two-Ns committed Nov 7, 2023
1 parent 6228d8c commit 738e04d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ allprojects {

ext {
// Platforms
grpcVersion = project.hasProperty("edgeDepsTest") ? '1.59.0' : '1.54.1' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
grpcVersion = '1.54.1' // [1.38.0,) Needed for io.grpc.protobuf.services.HealthStatusManager
jacksonVersion = '2.14.2' // [2.9.0,)
// we don't upgrade to 1.10.x because it requires kotlin 1.6. Users may use 1.10.x in their environments though.
micrometerVersion = project.hasProperty("edgeDepsTest") ? '1.10.5' : '1.9.9' // [1.0.0,)
Expand Down
3 changes: 0 additions & 3 deletions temporal-sdk/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ dependencies {
testImplementation "org.mockito:mockito-core:${mockitoVersion}"
testImplementation 'pl.pragmatists:JUnitParams:1.1.1'
testImplementation group: 'ch.qos.logback', name: 'logback-classic', version: "${logbackVersion}"
if (project.hasProperty("edgeDepsTest")) {
implementation "io.grpc:grpc-inprocess:$grpcVersion"
}
}

task registerNamespace(type: JavaExec) {
Expand Down
2 changes: 1 addition & 1 deletion temporal-serviceclient/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ protobuf {
// protoc and protoc-gen-grpc-java versions are selected to be compatible
// with the oldest supported versions of protoc and grpc artifacts.
protoc {
artifact = 'com.google.protobuf:protoc:3.10.1' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
artifact = 'com.google.protobuf:protoc:3.16.3' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
}
plugins {
grpc {
Expand Down
2 changes: 1 addition & 1 deletion temporal-test-server/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ protobuf {
// protoc and protoc-gen-grpc-java versions are selected to be compatible
// with the oldest supported versions of protoc and grpc artifacts.
protoc {
artifact = 'com.google.protobuf:protoc:3.10.1' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
artifact = 'com.google.protobuf:protoc:3.16.3' + (System.getProperty("os.arch") == 'aarch64' && System.getProperty("os.name") == 'Mac OS X' ? ':osx-x86_64' : '')
}
plugins {
grpc {
Expand Down

0 comments on commit 738e04d

Please sign in to comment.