Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -694,7 +694,7 @@ subprojects {
sign publishing.publications.mavenJava
}

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'
def log4jVersion = '2.24.1'
def jacksonVersion = '2.18.0'
def dropwizardMetricsVersion = '4.2.26'
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'

dependencies {
api "com.google.guava:guava"
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-examples/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'

dependencies {
implementation project(":eventmesh-sdks:eventmesh-sdk-java")
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-meta/eventmesh-meta-raft/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ plugins {
id 'com.google.protobuf' version '0.9.4'
}

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'
def protobufVersion = '3.25.4'
def protocVersion = protobufVersion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation "io.cloudevents:cloudevents-core"
implementation "com.google.guava:guava"
implementation "io.cloudevents:cloudevents-json-jackson"
implementation ("io.grpc:grpc-protobuf:1.68.0") {
implementation ("io.grpc:grpc-protobuf:1.71.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ repositories {
mavenCentral()
}

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'
def protobufVersion = '3.25.4'
def protocVersion = protobufVersion

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies {
implementation "io.cloudevents:cloudevents-core"
implementation "com.google.guava:guava"
implementation "io.cloudevents:cloudevents-json-jackson"
implementation ("io.grpc:grpc-protobuf:1.68.0") {
implementation ("io.grpc:grpc-protobuf:1.71.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
dependencies {
implementation project(":eventmesh-protocol-plugin:eventmesh-protocol-api")
implementation "io.cloudevents:cloudevents-core"
implementation ("io.grpc:grpc-protobuf:1.68.0") {
implementation ("io.grpc:grpc-protobuf:1.71.0") {
exclude group: "com.google.protobuf", module: "protobuf-java"
}
implementation("com.google.protobuf:protobuf-java:3.25.4")
Expand Down
2 changes: 1 addition & 1 deletion eventmesh-sdks/eventmesh-sdk-java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
* limitations under the License.
*/

def grpcVersion = '1.68.0'
def grpcVersion = '1.71.0'

dependencies {
api(project(":eventmesh-common")) {
Expand Down
Loading