Signed-off-by: Logan Kulinski <rashes_lineage02@icloud.com>
This commit is contained in:
Logan Kulinski
2024-10-27 12:10:51 -05:00
committed by GitHub
parent 8bab3cd081
commit 5ab408b626
2 changed files with 4 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ If youre a Maven user, you can use the dependencies by adding the following t
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>0.2.0-SNAPSHOT</version>
<type>pom</type>
@@ -84,7 +84,7 @@ As shown in the snippet below this can then be followed by version-less declarat
```gradle
dependencies {
implementation platform("org.springframework.ai:spring-grpc-dependencies:0.2.0-SNAPSHOT")
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.2.0-SNAPSHOT")
}
```

View File

@@ -66,7 +66,7 @@ If youre a Maven user, you can use the dependencies by adding the following t
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.ai</groupId>
<groupId>org.springframework.grpc</groupId>
<artifactId>spring-grpc-dependencies</artifactId>
<version>0.2.0-SNAPSHOT</version>
<type>pom</type>
@@ -83,7 +83,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-dependencies:0.2.0-SNAPSHOT")
implementation platform("org.springframework.grpc:spring-grpc-dependencies:0.2.0-SNAPSHOT")
}
----