|
|
|
|
|
|
26
|
To **skip the basics**, do the following:
|
26
|
To **skip the basics**, do the following:
|
|
27
|
|
27
|
|
|
28
|
- [Download][zip] and unzip the source repository for this guide, or clone it using [Git][u-git]:
|
28
|
- [Download][zip] and unzip the source repository for this guide, or clone it using [Git][u-git]:
|
|
29
|
-`git clone https://github.com/springframework-meta/gs-spring-boot.git`
|
|
|
|
|
|
29
|
+`git clone https://github.com/spring-guides/gs-spring-boot.git`
|
|
30
|
- cd into `gs-spring-boot/initial`.
|
30
|
- cd into `gs-spring-boot/initial`.
|
|
31
|
- Jump ahead to [Learn what you can do with Spring Boot](#initial).
|
31
|
- Jump ahead to [Learn what you can do with Spring Boot](#initial).
|
|
32
|
|
32
|
|
|
33
|
**When you're finished**, you can check your results against the code in `gs-spring-boot/complete`.
|
33
|
**When you're finished**, you can check your results against the code in `gs-spring-boot/complete`.
|
|
34
|
-[zip]: https://github.com/springframework-meta/gs-spring-boot/archive/master.zip
|
|
|
|
|
|
34
|
+[zip]: https://github.com/spring-guides/gs-spring-boot/archive/master.zip
|
|
35
|
[u-git]: /understanding/Git
|
35
|
[u-git]: /understanding/Git
|
|
36
|
|
36
|
|
|
37
|
|
37
|
|
|
|
|
|
|
|
52
|
|
52
|
|
|
53
|
|
53
|
|
|
54
|
### Create a Gradle build file
|
54
|
### Create a Gradle build file
|
|
55
|
-Below is the [initial Gradle build file](https://github.com/springframework-meta/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/springframework-meta/gs-spring-boot/blob/master/initial/pom.xml).
|
|
|
|
|
|
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).
|
|
56
|
|
56
|
|
|
57
|
`build.gradle`
|
57
|
`build.gradle`
|
|
58
|
```gradle
|
58
|
```gradle
|