Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump com.google.protobuf from 0.8.17 to 0.9.4 #4973

Merged
merged 3 commits into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
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
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ allprojects {
.exclude('**/org/apache/eventmesh/connector/openfunction/client/EventMeshGrpcService**')
.exclude('**/org/apache/eventmesh/connector/openfunction/client/CallbackServiceGrpc**')
.exclude('**/org/apache/eventmesh/connector/jdbc/antlr**')
.exclude('**/org/apache/eventmesh/meta/raft/rpc/**')

dependencies {
repositories {
Expand Down
10 changes: 6 additions & 4 deletions eventmesh-meta/eventmesh-meta-raft/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@
*/

plugins {
id 'com.google.protobuf' version '0.8.17'
id 'com.google.protobuf' version '0.9.4'
}

def grpcVersion = '1.50.2' // CURRENT_GRPC_VERSION
def grpcVersion = '1.64.0' // CURRENT_GRPC_VERSION
def protobufVersion = '3.25.3'
def protocVersion = protobufVersion

def jraftVersion = '1.3.14'

dependencies {
implementation ("io.grpc:grpc-protobuf:${grpcVersion}") {
exclude group: "com.google.protobuf", module: "protobuf-java"
Expand All @@ -36,8 +38,8 @@ dependencies {

implementation project(":eventmesh-meta:eventmesh-meta-api")
implementation project(":eventmesh-common")
implementation "com.alipay.sofa:jraft-core:1.3.14"
implementation "com.alipay.sofa:rpc-grpc-impl:1.3.14"
implementation "com.alipay.sofa:jraft-core:${jraftVersion}"
implementation "com.alipay.sofa:rpc-grpc-impl:${jraftVersion}"
testImplementation 'org.junit.jupiter:junit-jupiter'
}

Expand Down
Loading