From 690849c3aa48bbd1629ccd11d8dd420cfe9719e7 Mon Sep 17 00:00:00 2001 From: Todor Dinev Date: Thu, 2 Jan 2025 14:02:51 +0100 Subject: [PATCH] Update getting-started.adoc Change `compile` to `implementation` to reflect newer Gradle versions --- .../modules/ROOT/pages/introduction/getting-started.adoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/antora/modules/ROOT/pages/introduction/getting-started.adoc b/src/main/antora/modules/ROOT/pages/introduction/getting-started.adoc index 2875cca41..82f59d9b2 100644 --- a/src/main/antora/modules/ROOT/pages/introduction/getting-started.adoc +++ b/src/main/antora/modules/ROOT/pages/introduction/getting-started.adoc @@ -14,7 +14,7 @@ The simplest way to get to started is to build a Spring Boot application because ---- dependencies { ... - compile("org.springframework.boot:spring-boot-starter-data-rest") + implementation("org.springframework.boot:spring-boot-starter-data-rest") ... } ---- @@ -51,7 +51,7 @@ To add Spring Data REST to a Gradle-based project, add the `spring-data-rest-web ---- dependencies { … other project dependencies - compile("org.springframework.data:spring-data-rest-webmvc:{version}") + implementation("org.springframework.data:spring-data-rest-webmvc:{version}") } ---- ====