Просмотр исходного кода

Convert spring-boot-up to spring-boot-starter

Greg Turnquist 13 лет назад
Родитель
Сommit
8eacee4160
3 измененных файлов: 7 добавлений и 7 удалений
  1. 3
    3
      README.md
  2. 2
    2
      complete/pom.xml
  3. 2
    2
      initial/pom.xml

+ 3
- 3
README.md Просмотреть файл

@@ -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
 

+ 2
- 2
complete/pom.xml Просмотреть файл

@@ -9,14 +9,14 @@
9 9
 
10 10
     <parent>
11 11
         <groupId>org.springframework.boot</groupId>
12
-        <artifactId>spring-boot-up-parent</artifactId>
12
+        <artifactId>spring-boot-starter-parent</artifactId>
13 13
         <version>0.5.0.BUILD-SNAPSHOT</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>
17 17
         <dependency>
18 18
             <groupId>org.springframework.boot</groupId>
19
-            <artifactId>spring-boot-up-web</artifactId>
19
+            <artifactId>spring-boot-starter-web</artifactId>
20 20
         </dependency>
21 21
         <dependency>
22 22
             <groupId>com.fasterxml.jackson.core</groupId>

+ 2
- 2
initial/pom.xml Просмотреть файл

@@ -9,14 +9,14 @@
9 9
 
10 10
     <parent>
11 11
         <groupId>org.springframework.boot</groupId>
12
-        <artifactId>spring-boot-up-parent</artifactId>
12
+        <artifactId>spring-boot-starter-parent</artifactId>
13 13
         <version>0.5.0.BUILD-SNAPSHOT</version>
14 14
     </parent>
15 15
 
16 16
     <dependencies>
17 17
         <dependency>
18 18
             <groupId>org.springframework.boot</groupId>
19
-            <artifactId>spring-boot-up-web</artifactId>
19
+            <artifactId>spring-boot-starter-web</artifactId>
20 20
         </dependency>
21 21
         <dependency>
22 22
             <groupId>com.fasterxml.jackson.core</groupId>