質問編集履歴

1

pom.xmlの追記

2019/07/29 00:30

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -211,3 +211,187 @@
211
211
  </html>
212
212
 
213
213
  ```
214
+
215
+
216
+
217
+ ```pom
218
+
219
+ <?xml version="1.0" encoding="UTF-8"?>
220
+
221
+ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
222
+
223
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
224
+
225
+ <modelVersion>4.0.0</modelVersion>
226
+
227
+ <parent>
228
+
229
+ <groupId>org.springframework.boot</groupId>
230
+
231
+ <artifactId>spring-boot-starter-parent</artifactId>
232
+
233
+ <version>2.1.5.RELEASE</version>
234
+
235
+ <relativePath/> <!-- lookup parent from repository -->
236
+
237
+ </parent>
238
+
239
+ <groupId>com.example</groupId>
240
+
241
+ <artifactId>demo</artifactId>
242
+
243
+ <version>0.0.1-SNAPSHOT</version>
244
+
245
+ <name>demo</name>
246
+
247
+ <description>Demo project for Spring Boot</description>
248
+
249
+
250
+
251
+ <properties>
252
+
253
+ <java.version>1.8</java.version>
254
+
255
+ </properties>
256
+
257
+
258
+
259
+ <dependencies>
260
+
261
+ <dependency>
262
+
263
+ <groupId>org.springframework.boot</groupId>
264
+
265
+ <artifactId>spring-boot-starter-data-jpa</artifactId>
266
+
267
+ </dependency>
268
+
269
+ <dependency>
270
+
271
+ <groupId>org.springframework.boot</groupId>
272
+
273
+ <artifactId>spring-boot-starter-thymeleaf</artifactId>
274
+
275
+ </dependency>
276
+
277
+ <dependency>
278
+
279
+ <groupId>org.springframework.boot</groupId>
280
+
281
+ <artifactId>spring-boot-starter-web</artifactId>
282
+
283
+ </dependency>
284
+
285
+
286
+
287
+ <dependency>
288
+
289
+ <groupId>org.springframework.boot</groupId>
290
+
291
+ <artifactId>spring-boot-devtools</artifactId>
292
+
293
+ <scope>runtime</scope>
294
+
295
+ </dependency>
296
+
297
+ <dependency>
298
+
299
+ <groupId>mysql</groupId>
300
+
301
+ <artifactId>mysql-connector-java</artifactId>
302
+
303
+ <scope>runtime</scope>
304
+
305
+ </dependency>
306
+
307
+ <dependency>
308
+
309
+ <groupId>org.springframework.boot</groupId>
310
+
311
+ <artifactId>spring-boot-configuration-processor</artifactId>
312
+
313
+ <optional>true</optional>
314
+
315
+ </dependency>
316
+
317
+ <dependency>
318
+
319
+ <groupId>org.springframework.boot</groupId>
320
+
321
+ <artifactId>spring-boot-starter-test</artifactId>
322
+
323
+ <scope>test</scope>
324
+
325
+ </dependency>
326
+
327
+ <dependency>
328
+
329
+ <groupId>org.apache.tomcat.embed</groupId>
330
+
331
+ <artifactId>tomcat-embed-jasper</artifactId>
332
+
333
+ <scope>provided</scope>
334
+
335
+ </dependency>
336
+
337
+ <dependency>
338
+
339
+ <groupId>org.assertj</groupId>
340
+
341
+ <artifactId>assertj-core</artifactId>
342
+
343
+ </dependency>
344
+
345
+ <dependency>
346
+
347
+ <groupId>org.springframework.security</groupId>
348
+
349
+ <artifactId>spring-security-core</artifactId>
350
+
351
+ <version>5.1.5.RELEASE</version>
352
+
353
+ </dependency>
354
+
355
+ <dependency>
356
+
357
+ <groupId>org.springframework.security</groupId>
358
+
359
+ <artifactId>spring-security-web</artifactId>
360
+
361
+ <version>5.1.5.RELEASE</version>
362
+
363
+ </dependency>
364
+
365
+ <dependency>
366
+
367
+ <groupId>org.springframework.security</groupId>
368
+
369
+ <artifactId>spring-security-config</artifactId>
370
+
371
+ <version>5.0.8.RELEASE</version>
372
+
373
+ </dependency>
374
+
375
+ </dependencies>
376
+
377
+
378
+
379
+ <build>
380
+
381
+ <plugins>
382
+
383
+ <plugin>
384
+
385
+ <groupId>org.springframework.boot</groupId>
386
+
387
+ <artifactId>spring-boot-maven-plugin</artifactId>
388
+
389
+ </plugin>
390
+
391
+ </plugins>
392
+
393
+ </build>
394
+
395
+ </project>
396
+
397
+ ```