diff --git a/README.md b/README.md index 79ab7d9..ad12581 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ For convenience, you can use the Spring gRPC BOM to manage dependencies. With Ma org.springframework.grpc - spring-grpc-bom + spring-grpc-dependencies 0.1.0-SNAPSHOT pom import @@ -47,7 +47,7 @@ or Gradle: ```groovy dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-bom:0.1.0-SNAPSHOT' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.1.0-SNAPSHOT' } } ``` diff --git a/pom.xml b/pom.xml index cdfda9c..ea19009 100644 --- a/pom.xml +++ b/pom.xml @@ -15,7 +15,7 @@ spring-grpc-docs - spring-grpc-bom + spring-grpc-dependencies spring-grpc-core spring-grpc-test spring-grpc-spring-boot-autoconfigure diff --git a/samples/grpc-server/build.gradle b/samples/grpc-server/build.gradle index e684ddd..6718625 100644 --- a/samples/grpc-server/build.gradle +++ b/samples/grpc-server/build.gradle @@ -24,7 +24,7 @@ repositories { dependencyManagement { imports { - mavenBom 'org.springframework.grpc:spring-grpc-bom:0.1.0-SNAPSHOT' + mavenBom 'org.springframework.grpc:spring-grpc-dependencies:0.1.0-SNAPSHOT' } } diff --git a/samples/grpc-server/pom.xml b/samples/grpc-server/pom.xml index 29ed966..f0dc0bd 100644 --- a/samples/grpc-server/pom.xml +++ b/samples/grpc-server/pom.xml @@ -37,8 +37,8 @@ org.springframework.grpc - spring-grpc-bom - ${project.version} + spring-grpc-dependencies + 0.1.0-SNAPSHOT pom import @@ -182,4 +182,4 @@ - + \ No newline at end of file diff --git a/spring-grpc-bom/pom.xml b/spring-grpc-dependencies/pom.xml similarity index 91% rename from spring-grpc-bom/pom.xml rename to spring-grpc-dependencies/pom.xml index 5bcf109..ff6468c 100644 --- a/spring-grpc-bom/pom.xml +++ b/spring-grpc-dependencies/pom.xml @@ -10,11 +10,11 @@ 0.1.0-SNAPSHOT - spring-grpc-bom + spring-grpc-dependencies pom - Spring gRPC BOM - Bill of Materials POM (BOM) for the Spring gRPC modules + Spring gRPC dependencies + Dependencies for the Spring gRPC modules https://github.com/spring-projects-experimental/spring-grpc diff --git a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc index 62e3e3f..efa7da8 100644 --- a/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc +++ b/spring-grpc-docs/src/main/antora/modules/ROOT/pages/getting-started.adoc @@ -66,7 +66,7 @@ If you’re a Maven user, you can use the BOM by adding the following to your po org.springframework.ai - spring-grpc-bom + spring-grpc-dependencies 1.0.0-SNAPSHOT pom import @@ -82,7 +82,7 @@ As shown in the snippet below this can then be followed by version-less declarat [source,gradle] ---- dependencies { - implementation platform("org.springframework.ai:spring-grpc-bom:1.0.0-SNAPSHOT") + implementation platform("org.springframework.ai:spring-grpc-dependencies:1.0.0-SNAPSHOT") // Replace the following with the starter dependencies of specific modules you wish to use implementation 'org.springframework.ai:spring-grpc-openai' }