Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,9 @@ private Library findManagingLibrary() {
}

private List<Dependency> getBomDependencies(Library manager) {
if (manager == null) {
return Collections.emptyList();
}
return manager.getGroups()
.stream()
.flatMap((group) -> group.getBoms()
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ mockitoVersion=5.23.0
nativeBuildToolsVersion=1.1.1
nullabilityPluginVersion=0.0.11
snakeYamlVersion=2.6
springGrpcVersion=1.1.0
springFrameworkVersion=7.0.8
springFramework60xVersion=6.0.23
tomcatVersion=11.0.22
Expand Down
29 changes: 15 additions & 14 deletions platform/spring-boot-dependencies/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,16 @@ bom {
site("https://groovy-lang.org")
}
}
library("Grpc Java", "1.80.0") {
library("Grpc Java", "1.81.0") {
group("io.grpc") {
bom("grpc-bom")
}
alignWith {
version {
of "io.grpc:grpc-core"
from "org.springframework.grpc:spring-grpc-core"
}
}
links {
github("https://github.com/grpc/grpc-java")
docs("https://grpc.io/docs/languages/java/")
Expand Down Expand Up @@ -1915,21 +1921,16 @@ bom {
releaseNotes("https://qpid.apache.org/releases/qpid-protonj2-{version}/release-notes.html")
}
}
library("Protobuf Common Protos", "2.70.0") {
group("com.google.api.grpc") {
modules = [
"proto-google-common-protos"
]
}
links {
github("https://github.com/googleapis/sdk-platform-java")
releaseNotes("https://github.com/googleapis/sdk-platform-java/releases/tag/v-{version}")
}
}
library("Protobuf Java", "4.34.2") {
library("Protobuf Java", "4.35.0") {
group("com.google.protobuf") {
bom("protobuf-bom")
}
alignWith {
property {
name "protobuf-java.version"
of "org.springframework.grpc:spring-grpc-dependencies:$springGrpcVersion"
}
}
links {
site("https://protobuf.dev")
github("https://github.com/protocolbuffers/protobuf")
Expand Down Expand Up @@ -2586,7 +2587,7 @@ bom {
releaseNotes("https://github.com/spring-projects/spring-graphql/releases/tag/v{version}")
}
}
library("Spring gRPC", "1.1.0") {
library("Spring gRPC", "${springGrpcVersion}") {
considerSnapshots()
group("org.springframework.grpc") {
modules = [
Expand Down
Loading