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

Upgrade protobuf version #1005

Merged
merged 2 commits into from
Sep 30, 2024
Merged
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
4 changes: 2 additions & 2 deletions TrafficCapture/captureProtobufs/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ plugins {

dependencies {
api project(":commonDependencyVersionConstraints")
api group: 'com.google.protobuf', name: 'protobuf-java', version: '3.22.2'
api group: 'com.google.protobuf', name: 'protobuf-java'
}

protobuf {
protoc {
artifact = "com.google.protobuf:protoc:3.22.2"
artifact = "com.google.protobuf:protoc:${rootProject.project("commonDependencyVersionConstraints").protobufVersion}"
}
}
8 changes: 6 additions & 2 deletions commonDependencyVersionConstraints/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ plugins {
java.sourceCompatibility = JavaVersion.VERSION_11
java.targetCompatibility = JavaVersion.VERSION_11

ext {
protobufVersion='3.25.5'
}

dependencies {

constraints {
Expand All @@ -24,7 +28,7 @@ dependencies {

api group: 'com.google.guava', name: 'guava', version: '32.0.1-jre'

api group: 'com.google.protobuf', name: 'protobuf-java', version: '3.22.2'
api group: 'com.google.protobuf', name: 'protobuf-java', version: protobufVersion

api group: 'org.apache.httpcomponents.client5', name: 'httpclient5', version: '5.2.1'
api group: 'software.amazon.msk', name:'aws-msk-iam-auth', version: '2.0.3'
Expand All @@ -38,7 +42,7 @@ dependencies {

api group: 'org.apache.kafka', name:'kafka-clients', version:'3.6.0'

api group: 'com.google.protobuf', name: 'protoc', version: '3.22.2'
api group: 'com.google.protobuf', name: 'protoc', version: protobufVersion

def jmeter = '5.6.3'
api group: 'org.apache.jmeter', name: 'ApacheJMeter_core', version: jmeter
Expand Down