Преглед на файлове

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

Greg Turnquist преди 13 години
родител
ревизия
0e365d0f7d
променени са 4 файла, в които са добавени 11 реда и са изтрити 23 реда
  1. 2
    2
      README.ftl.md
  2. 4
    8
      README.md
  3. 3
    7
      complete/pom.xml
  4. 2
    6
      initial/pom.xml

+ 2
- 2
README.ftl.md Целия файл

125
 ```xml
125
 ```xml
126
         <dependency>
126
         <dependency>
127
             <groupId>org.springframework.boot</groupId>
127
             <groupId>org.springframework.boot</groupId>
128
-            <artifactId>spring-boot-up-jetty</artifactId>
128
+            <artifactId>spring-boot-starter-jetty</artifactId>
129
         </dependency>
129
         </dependency>
130
 ```
130
 ```
131
 
131
 
226
 ----------------
226
 ----------------
227
 Spring Boot is powerful, but frankly too big to fit into a single guide. This is just a sampling.
227
 Spring Boot is powerful, but frankly too big to fit into a single guide. This is just a sampling.
228
 
228
 
229
-As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.
229
+As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.

+ 4
- 8
README.md Целия файл

64
 
64
 
65
     <parent>
65
     <parent>
66
         <groupId>org.springframework.boot</groupId>
66
         <groupId>org.springframework.boot</groupId>
67
-        <artifactId>spring-boot-up-parent</artifactId>
67
+        <artifactId>spring-boot-starter-parent</artifactId>
68
         <version>0.5.0.BUILD-SNAPSHOT</version>
68
         <version>0.5.0.BUILD-SNAPSHOT</version>
69
     </parent>
69
     </parent>
70
 
70
 
71
     <dependencies>
71
     <dependencies>
72
         <dependency>
72
         <dependency>
73
             <groupId>org.springframework.boot</groupId>
73
             <groupId>org.springframework.boot</groupId>
74
-            <artifactId>spring-boot-up-web</artifactId>
75
-        </dependency>
76
-        <dependency>
77
-            <groupId>com.fasterxml.jackson.core</groupId>
78
-            <artifactId>jackson-databind</artifactId>
74
+            <artifactId>spring-boot-starter-web</artifactId>
79
         </dependency>
75
         </dependency>
80
     </dependencies>
76
     </dependencies>
81
 
77
 
257
 ```xml
253
 ```xml
258
         <dependency>
254
         <dependency>
259
             <groupId>org.springframework.boot</groupId>
255
             <groupId>org.springframework.boot</groupId>
260
-            <artifactId>spring-boot-up-jetty</artifactId>
256
+            <artifactId>spring-boot-starter-jetty</artifactId>
261
         </dependency>
257
         </dependency>
262
 ```
258
 ```
263
 
259
 
398
 ----------------
394
 ----------------
399
 Spring Boot is powerful, but frankly too big to fit into a single guide. This is just a sampling.
395
 Spring Boot is powerful, but frankly too big to fit into a single guide. This is just a sampling.
400
 
396
 
401
-As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.
397
+As you read more of this site's getting started guides, you will see it used all over the place. It might not be obvious at first, because Spring Boot is so good at adding the things you need without getting in your way. But after using it for a bit, you may wonder how you lived without it.

+ 3
- 7
complete/pom.xml Целия файл

9
 
9
 
10
     <parent>
10
     <parent>
11
         <groupId>org.springframework.boot</groupId>
11
         <groupId>org.springframework.boot</groupId>
12
-        <artifactId>spring-boot-up-parent</artifactId>
12
+        <artifactId>spring-boot-starter-parent</artifactId>
13
         <version>0.5.0.BUILD-SNAPSHOT</version>
13
         <version>0.5.0.BUILD-SNAPSHOT</version>
14
     </parent>
14
     </parent>
15
 
15
 
16
     <dependencies>
16
     <dependencies>
17
         <dependency>
17
         <dependency>
18
             <groupId>org.springframework.boot</groupId>
18
             <groupId>org.springframework.boot</groupId>
19
-            <artifactId>spring-boot-up-web</artifactId>
19
+            <artifactId>spring-boot-starter-web</artifactId>
20
         </dependency>
20
         </dependency>
21
         <dependency>
21
         <dependency>
22
             <groupId>org.springframework.boot</groupId>
22
             <groupId>org.springframework.boot</groupId>
23
-            <artifactId>spring-boot-up-jetty</artifactId>
24
-        </dependency>
25
-        <dependency>
26
-            <groupId>com.fasterxml.jackson.core</groupId>
27
-            <artifactId>jackson-databind</artifactId>
23
+            <artifactId>spring-boot-starter-jetty</artifactId>
28
         </dependency>
24
         </dependency>
29
     </dependencies>
25
     </dependencies>
30
 
26
 

+ 2
- 6
initial/pom.xml Целия файл

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