|
|
@@ -74,7 +74,7 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
74
|
74
|
└── hello
|
|
75
|
75
|
|
|
76
|
76
|
|
|
77
|
|
-<a name="" class="gradle-begin"></a>
|
|
|
77
|
+<span class="gradle">
|
|
78
|
78
|
### Create a Gradle build file
|
|
79
|
79
|
Below is the [initial Gradle build file](https://github.com/spring-guides/gs-rest-service/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-rest-service/blob/master/initial/pom.xml). If you are using [Spring Tool Suite (STS)][gs-sts], you can import the guide directly.
|
|
80
|
80
|
|
|
|
@@ -111,17 +111,17 @@ task wrapper(type: Wrapper) {
|
|
111
|
111
|
gradleVersion = '1.7'
|
|
112
|
112
|
}
|
|
113
|
113
|
```
|
|
114
|
|
-<a name="" class="gradle-end"></a>
|
|
|
114
|
+</span>
|
|
115
|
115
|
|
|
116
|
|
-<a name="" class="maven-begin"></a>
|
|
|
116
|
+<span class="maven">
|
|
117
|
117
|
### Maven stuff
|
|
118
|
118
|
This is Maven stuff
|
|
119
|
|
-<a name="" class="maven-end"></a>
|
|
|
119
|
+</span>
|
|
120
|
120
|
|
|
121
|
|
-<a name="" class="sts-begin"></a>
|
|
|
121
|
+<span class="sts">
|
|
122
|
122
|
### STS stuff
|
|
123
|
123
|
This is STS stuff
|
|
124
|
|
-<a name="" class="sts-end"></a>
|
|
|
124
|
+</span>
|
|
125
|
125
|
|
|
126
|
126
|
[gs-sts]: /guides/gs/sts
|
|
127
|
127
|
|