Rename bom to dependencies

This commit is contained in:
varunu28
2024-10-19 15:00:33 -07:00
committed by Dave Syer
parent 213d1f9bd8
commit 434e26dcec
6 changed files with 12 additions and 12 deletions

View File

@@ -66,7 +66,7 @@ If youre a Maven user, you can use the BOM by adding the following to your po
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<artifactId>spring-grpc-bom</artifactId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>1.0.0-SNAPSHOT</version>
<type>pom</type>
<scope>import</scope>
@@ -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'
}