|
|
@@ -83,14 +83,14 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
83
|
83
|
|
|
84
|
84
|
<parent>
|
|
85
|
85
|
<groupId>org.springframework.boot</groupId>
|
|
86
|
|
- <artifactId>spring-boot-up-parent</artifactId>
|
|
|
86
|
+ <artifactId>spring-boot-starter-parent</artifactId>
|
|
87
|
87
|
<version>0.5.0.BUILD-SNAPSHOT</version>
|
|
88
|
88
|
</parent>
|
|
89
|
89
|
|
|
90
|
90
|
<dependencies>
|
|
91
|
91
|
<dependency>
|
|
92
|
92
|
<groupId>org.springframework.boot</groupId>
|
|
93
|
|
- <artifactId>spring-boot-up-web</artifactId>
|
|
|
93
|
+ <artifactId>spring-boot-starter-web</artifactId>
|
|
94
|
94
|
</dependency>
|
|
95
|
95
|
<dependency>
|
|
96
|
96
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
@@ -116,7 +116,7 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
116
|
116
|
</project>
|
|
117
|
117
|
```
|
|
118
|
118
|
|
|
119
|
|
-TODO: mention that we're using Spring Boot's [_starter POMs_](../gs-bootstrap-starter) here.
|
|
|
119
|
+This guide is using [Spring Boot's starter POMs](/guides/gs/spring-boot/content).
|
|
120
|
120
|
|
|
121
|
121
|
Note to experienced Maven users who are unaccustomed to using an external parent project: you can take it out later, it's just there to reduce the amount of code you have to write to get started.
|
|
122
|
122
|
|