Skip to content

Commit 209128d

Browse files
tdinevmp911de
authored andcommitted
Adapt Gradle getting started samples to newer Gradle version.
Change `compile` to `implementation` to reflect newer Gradle versions Closes #2443
1 parent b4003de commit 209128d

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)