Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,12 @@ tasks.withType(Javadoc).configureEach {
options.addStringOption('Xdoclint:none', '-quiet')
}

def grpcVersion = '1.54.1'
def protobufVersion = '3.21.12'
def grpcVersion = '1.62.2'

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why this version? Not sure it matters that much just curious

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

honestly because it was the first one compatible with a new protobuf version
but I figured that we could update grpc to 1.79 (which is n-1) and still be compatible, so I updated both protobuf to use the latest 1.3.x patch and grpc.

def protobufVersion = '3.25.6'
def protocVersion = protobufVersion

dependencies {
implementation "com.google.protobuf:protobuf-java:${protobufVersion}"
implementation "io.grpc:grpc-protobuf:${grpcVersion}"
implementation "io.grpc:grpc-stub:${grpcVersion}"
implementation 'javax.annotation:javax.annotation-api:1.3.2'
Expand Down
Loading