Skip to content

Commit 3331046

Browse files
committed
Add internal dependency management for gRPC
Closes gh-46444
1 parent c8d700c commit 3331046

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

module/spring-boot-opentelemetry/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,5 +46,5 @@ dependencies {
4646
testImplementation("com.squareup.okhttp3:mockwebserver")
4747

4848
testRuntimeOnly("ch.qos.logback:logback-classic")
49-
testRuntimeOnly("io.grpc:grpc-api:1.72.0")
49+
testRuntimeOnly("io.grpc:grpc-api")
5050
}

module/spring-boot-tracing/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,5 @@ dependencies {
6464
testImplementation("org.eclipse.jetty.http2:jetty-http2-server")
6565

6666
testRuntimeOnly("ch.qos.logback:logback-classic")
67-
testRuntimeOnly("io.grpc:grpc-api:1.72.0")
67+
testRuntimeOnly("io.grpc:grpc-api")
6868
}

platform/spring-boot-internal-dependencies/build.gradle

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,12 @@ bom {
9090
"jsr305"
9191
]
9292
}
93-
}
93+
}
94+
library("gRPC", "1.73.0") {
95+
group("io.grpc") {
96+
bom("grpc-bom")
97+
}
98+
}
9499
library("Janino", "3.1.12") {
95100
group("org.codehaus.janino") {
96101
bom("janino") {

0 commit comments

Comments
 (0)