Browse Source

Add internal dependency management for gRPC

Closes gh-46444
pull/46447/head
Stéphane Nicoll 5 months ago
parent
commit
3331046306
  1. 2
      module/spring-boot-opentelemetry/build.gradle
  2. 2
      module/spring-boot-tracing/build.gradle
  3. 7
      platform/spring-boot-internal-dependencies/build.gradle

2
module/spring-boot-opentelemetry/build.gradle

@ -46,5 +46,5 @@ dependencies { @@ -46,5 +46,5 @@ dependencies {
testImplementation("com.squareup.okhttp3:mockwebserver")
testRuntimeOnly("ch.qos.logback:logback-classic")
testRuntimeOnly("io.grpc:grpc-api:1.72.0")
testRuntimeOnly("io.grpc:grpc-api")
}

2
module/spring-boot-tracing/build.gradle

@ -64,5 +64,5 @@ dependencies { @@ -64,5 +64,5 @@ dependencies {
testImplementation("org.eclipse.jetty.http2:jetty-http2-server")
testRuntimeOnly("ch.qos.logback:logback-classic")
testRuntimeOnly("io.grpc:grpc-api:1.72.0")
testRuntimeOnly("io.grpc:grpc-api")
}

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

@ -90,7 +90,12 @@ bom { @@ -90,7 +90,12 @@ bom {
"jsr305"
]
}
}
}
library("gRPC", "1.73.0") {
group("io.grpc") {
bom("grpc-bom")
}
}
library("Janino", "3.1.12") {
group("org.codehaus.janino") {
bom("janino") {

Loading…
Cancel
Save