Bläddra i källkod

Update guide to include like to gs-sts

Greg Turnquist 13 år sedan
förälder
incheckning
bf2d18885f
1 ändrade filer med 4 tillägg och 2 borttagningar
  1. 4
    2
      README.md

+ 4
- 2
README.md Visa fil

11
  - A favorite text editor or IDE
11
  - A favorite text editor or IDE
12
  - [JDK 6][jdk] or later
12
  - [JDK 6][jdk] or later
13
  - [Gradle 1.7+][gradle] or [Maven 3.0+][mvn]
13
  - [Gradle 1.7+][gradle] or [Maven 3.0+][mvn]
14
+ - You can also import the code from this guide as well as view the web page directly into [Spring Tool Suite (STS)][gs-sts] and work your way through it from there.
14
 
15
 
15
 [jdk]: http://www.oracle.com/technetwork/java/javase/downloads/index.html
16
 [jdk]: http://www.oracle.com/technetwork/java/javase/downloads/index.html
16
 [gradle]: http://www.gradle.org/
17
 [gradle]: http://www.gradle.org/
17
 [mvn]: http://maven.apache.org/download.cgi
18
 [mvn]: http://maven.apache.org/download.cgi
19
+[gs-sts]: /guides/gs/sts
18
 
20
 
19
 How to complete this guide
21
 How to complete this guide
20
 --------------------------
22
 --------------------------
52
 
54
 
53
 
55
 
54
 ### Create a Gradle build file
56
 ### Create a Gradle build file
55
-Below is the [initial Gradle build file](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/build.gradle). But you can also use Maven. The pom.xml file is included [right here](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/pom.xml).
57
+Below is the [initial Gradle build file](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/build.gradle). But you can also use Maven. The pom.xml file is included [right here](https://github.com/spring-guides/gs-spring-boot/blob/master/initial/pom.xml). If you are using [Spring Tool Suite (STS)][gs-sts], you can import the guide directly.
56
 
58
 
57
 `build.gradle`
59
 `build.gradle`
58
 ```gradle
60
 ```gradle
91
 }
93
 }
92
 ```
94
 ```
93
     
95
     
94
-    
96
+[gs-sts]: /guides/gs/sts    
95
 
97
 
96
 Learn what you can do with Spring Boot
98
 Learn what you can do with Spring Boot
97
 --------------------------------------
99
 --------------------------------------