|
@@ -61,13 +61,6 @@ To run the application, execute:
|
61
|
61
|
|
62
|
62
|
|
63
|
63
|
```
|
64
|
|
-./gradlew build && java -jar build/libs/{project_id}-0.1.0.jar
|
65
|
|
-```
|
66
|
|
-
|
67
|
|
-If you are using Maven, execute:
|
68
|
|
-
|
69
|
|
-
|
70
|
|
-```
|
71
|
64
|
mvn package && java -jar target/{project_id}-0.1.0.jar
|
72
|
65
|
```
|
73
|
66
|
|
|
@@ -126,13 +119,6 @@ You will want to add a test for the endpoint you added, and Spring Test already
|
126
|
119
|
|
127
|
120
|
Add this to your build file's list of dependencies:
|
128
|
121
|
|
129
|
|
-[source,groovy]
|
130
|
|
-```
|
131
|
|
-include::complete/build.gradle[tag=tests]
|
132
|
|
-```
|
133
|
|
-
|
134
|
|
-If you are using Maven, add this to your list of dependencies:
|
135
|
|
-
|
136
|
122
|
[source,xml]
|
137
|
123
|
```
|
138
|
124
|
include::complete/pom.xml[tag=tests]
|
|
@@ -163,13 +149,6 @@ If you are building a web site for your business, you probably need to add some
|
163
|
149
|
|
164
|
150
|
Add this to your build file's list of dependencies:
|
165
|
151
|
|
166
|
|
-[source,groovy]
|
167
|
|
-```
|
168
|
|
-include::complete/build.gradle[tag=actuator]
|
169
|
|
-```
|
170
|
|
-
|
171
|
|
-If you are using Maven, add this to your list of dependencies:
|
172
|
|
-
|
173
|
152
|
[source,xml]
|
174
|
153
|
```
|
175
|
154
|
include::complete/pom.xml[tag=actuator]
|
|
@@ -177,14 +156,6 @@ include::complete/pom.xml[tag=actuator]
|
177
|
156
|
|
178
|
157
|
Then restart the app:
|
179
|
158
|
|
180
|
|
-
|
181
|
|
-```
|
182
|
|
-./gradlew build && java -jar build/libs/{project_id}-0.1.0.jar
|
183
|
|
-```
|
184
|
|
-
|
185
|
|
-If you are using Maven, execute:
|
186
|
|
-
|
187
|
|
-
|
188
|
159
|
```
|
189
|
160
|
mvn package && java -jar target/{project_id}-0.1.0.jar
|
190
|
161
|
```
|