Skip to content

Commit 690849c

Browse files
authored
Update getting-started.adoc
Change `compile` to `implementation` to reflect newer Gradle versions
1 parent c13850e commit 690849c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/antora/modules/ROOT/pages/introduction/getting-started.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The simplest way to get to started is to build a Spring Boot application because
1414
----
1515
dependencies {
1616
...
17-
compile("org.springframework.boot:spring-boot-starter-data-rest")
17+
implementation("org.springframework.boot:spring-boot-starter-data-rest")
1818
...
1919
}
2020
----
@@ -51,7 +51,7 @@ To add Spring Data REST to a Gradle-based project, add the `spring-data-rest-web
5151
----
5252
dependencies {
5353
… other project dependencies
54-
compile("org.springframework.data:spring-data-rest-webmvc:{version}")
54+
implementation("org.springframework.data:spring-data-rest-webmvc:{version}")
5555
}
5656
----
5757
====

0 commit comments

Comments
 (0)