From 139ccd40cf2b7602887ac8d6dfa05efcc2e4eb28 Mon Sep 17 00:00:00 2001 From: Logan Kulinski Date: Sun, 27 Oct 2024 00:57:04 -0500 Subject: [PATCH] Update getting-started.adoc and README.md to fix the group ID from org.springframework.ai to org.springframework.grpc Signed-off-by: Logan Kulinski --- README.md | 4 ++-- .../src/main/antora/modules/ROOT/pages/getting-started.adoc | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 48e7a953..c7e7812d 100644 --- a/README.md +++ b/README.md @@ -68,7 +68,7 @@ If you’re a Maven user, you can use the dependencies by adding the following t - org.springframework.ai + org.springframework.grpc spring-grpc-dependencies 0.2.0-SNAPSHOT pom @@ -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") } ``` 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 0b59491b..66a0dd15 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 dependencies by adding the following t - org.springframework.ai + org.springframework.grpc spring-grpc-dependencies 0.2.0-SNAPSHOT pom @@ -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") } ----