|
|
@@ -73,10 +73,7 @@ In a project directory of your choosing, create the following subdirectory struc
|
|
73
|
73
|
└── java
|
|
74
|
74
|
└── hello
|
|
75
|
75
|
|
|
76
|
|
-<script type="text/html">
|
|
77
|
|
- <div class="gradle">
|
|
78
|
|
-</script>
|
|
79
|
|
-
|
|
|
76
|
+<a name="gradle-begin"></a>
|
|
80
|
77
|
### Create a Gradle build file
|
|
81
|
78
|
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.
|
|
82
|
79
|
|
|
|
@@ -113,30 +110,17 @@ task wrapper(type: Wrapper) {
|
|
113
|
110
|
gradleVersion = '1.7'
|
|
114
|
111
|
}
|
|
115
|
112
|
```
|
|
|
113
|
+<a name="gradle-end"></a>
|
|
116
|
114
|
|
|
117
|
|
-<script type="text/html">
|
|
118
|
|
- </div>
|
|
119
|
|
-</script>
|
|
120
|
|
-
|
|
121
|
|
-
|
|
122
|
|
-
|
|
123
|
|
-<script type="text/html">
|
|
124
|
|
- <div class="maven">
|
|
125
|
|
-</script>
|
|
|
115
|
+<a name="maven-begin"></a>
|
|
126
|
116
|
### Maven stuff
|
|
127
|
117
|
This is Maven stuff
|
|
128
|
|
-<script type="text/html">
|
|
129
|
|
- </div>
|
|
130
|
|
-</script>
|
|
|
118
|
+<a name="maven-end"></a>
|
|
131
|
119
|
|
|
132
|
|
-<script type="text/html">
|
|
133
|
|
- <div class="sts">
|
|
134
|
|
-</script>
|
|
|
120
|
+<a name="sts-begin"></a>
|
|
135
|
121
|
### STS stuff
|
|
136
|
122
|
This is STS stuff
|
|
137
|
|
-<script type="text/html">
|
|
138
|
|
- </div>
|
|
139
|
|
-</script>
|
|
|
123
|
+<a name="sts-end"></a>
|
|
140
|
124
|
|
|
141
|
125
|
[gs-sts]: /guides/gs/sts
|
|
142
|
126
|
|