質問編集履歴
3
関係のありそうなWarningを追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -443,3 +443,39 @@
|
|
443
443
|
</project>
|
444
444
|
|
445
445
|
```
|
446
|
+
|
447
|
+
|
448
|
+
|
449
|
+
---
|
450
|
+
|
451
|
+
|
452
|
+
|
453
|
+
関係のありそうなWarning
|
454
|
+
|
455
|
+
|
456
|
+
|
457
|
+
```
|
458
|
+
|
459
|
+
Overriding managed version 1.10 for commons-codec pom.xml /yyyyy 行 95 Maven pom ロード問題
|
460
|
+
|
461
|
+
Overriding managed version 1.4.196 for h2 pom.xml /yyyyy 行 135 Maven pom ロード問題
|
462
|
+
|
463
|
+
Overriding managed version 2.4.12 for groovy-all pom.xml /yyyyy 行 89 Maven pom ロード問題
|
464
|
+
|
465
|
+
Overriding managed version 2.6.7.RELEASE for spring-data-rest-core pom.xml /yyyyy 行 112 Maven pom ロード問題
|
466
|
+
|
467
|
+
Overriding managed version 2.8.10 for jackson-datatype-hibernate4 pom.xml /yyyyy 行 106 Maven pom ロード問題
|
468
|
+
|
469
|
+
Overriding managed version 5.0.12.Final for hibernate-core pom.xml /yyyyy 行 60 Maven pom ロード問題
|
470
|
+
|
471
|
+
Overriding managed version 5.0.12.Final for hibernate-entitymanager pom.xml /yyyyy 行 65 Maven pom ロード問題
|
472
|
+
|
473
|
+
Overriding managed version 5.1.44 for mysql-connector-java pom.xml /yyyyy 行 75 Maven pom ロード問題
|
474
|
+
|
475
|
+
Unknown referenced nature: org.hibernate.eclipse.console.hibernateNature. .project /yyyyy 不明 Unknown nature
|
476
|
+
|
477
|
+
Unknown referenced nature: org.jboss.tools.cdi.core.cdinature. .project /xxxxx 不明 Unknown nature
|
478
|
+
|
479
|
+
Unknown referenced nature: org.jboss.tools.jst.web.kb.kbnature. .project /xxxxx 不明 Unknown nature
|
480
|
+
|
481
|
+
```
|
2
pom.xmlに関して追記しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -93,3 +93,353 @@
|
|
93
93
|
Server built: Aug 12 2018 08:20:08 UTC
|
94
94
|
|
95
95
|
...
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
---
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
pom.xml
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
```xml
|
108
|
+
|
109
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
110
|
+
|
111
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
112
|
+
|
113
|
+
<modelVersion>4.0.0</modelVersion>
|
114
|
+
|
115
|
+
<groupId>xxxxx</groupId>
|
116
|
+
|
117
|
+
<artifactId>xxxxx</artifactId>
|
118
|
+
|
119
|
+
<version>xxxxx</version>
|
120
|
+
|
121
|
+
<packaging>war</packaging>
|
122
|
+
|
123
|
+
<name>xxxxx</name>
|
124
|
+
|
125
|
+
<description>xxxxx</description>
|
126
|
+
|
127
|
+
<dependencies>
|
128
|
+
|
129
|
+
<dependency>
|
130
|
+
|
131
|
+
<groupId>org.apache.tomcat</groupId>
|
132
|
+
|
133
|
+
<artifactId>tomcat-el-api</artifactId>
|
134
|
+
|
135
|
+
<version>8.5.9</version>
|
136
|
+
|
137
|
+
</dependency>
|
138
|
+
|
139
|
+
<dependency>
|
140
|
+
|
141
|
+
<groupId>org.apache.tomcat</groupId>
|
142
|
+
|
143
|
+
<artifactId>tomcat-i18n-es</artifactId>
|
144
|
+
|
145
|
+
<version>8.5.9</version>
|
146
|
+
|
147
|
+
</dependency>
|
148
|
+
|
149
|
+
<dependency>
|
150
|
+
|
151
|
+
<groupId>org.apache.tomcat</groupId>
|
152
|
+
|
153
|
+
<artifactId>tomcat-websocket</artifactId>
|
154
|
+
|
155
|
+
<version>8.5.9</version>
|
156
|
+
|
157
|
+
</dependency>
|
158
|
+
|
159
|
+
<dependency>
|
160
|
+
|
161
|
+
<groupId>org.apache.tomcat</groupId>
|
162
|
+
|
163
|
+
<artifactId>tomcat-jasper</artifactId>
|
164
|
+
|
165
|
+
<version>8.5.9</version>
|
166
|
+
|
167
|
+
</dependency>
|
168
|
+
|
169
|
+
<dependency>
|
170
|
+
|
171
|
+
<groupId>org.apache.tomcat</groupId>
|
172
|
+
|
173
|
+
<artifactId>tomcat-jasper-el</artifactId>
|
174
|
+
|
175
|
+
<version>8.5.9</version>
|
176
|
+
|
177
|
+
</dependency>
|
178
|
+
|
179
|
+
<dependency>
|
180
|
+
|
181
|
+
<groupId>org.apache.tomcat</groupId>
|
182
|
+
|
183
|
+
<artifactId>tomcat-util</artifactId>
|
184
|
+
|
185
|
+
<version>8.5.9</version>
|
186
|
+
|
187
|
+
</dependency>
|
188
|
+
|
189
|
+
<dependency>
|
190
|
+
|
191
|
+
<groupId>org.apache.tomcat</groupId>
|
192
|
+
|
193
|
+
<artifactId>tomcat-storeconfig</artifactId>
|
194
|
+
|
195
|
+
<version>8.5.9</version>
|
196
|
+
|
197
|
+
</dependency>
|
198
|
+
|
199
|
+
<dependency>
|
200
|
+
|
201
|
+
<groupId>org.apache.tomcat</groupId>
|
202
|
+
|
203
|
+
<artifactId>tomcat-jsp-api</artifactId>
|
204
|
+
|
205
|
+
<version>8.5.9</version>
|
206
|
+
|
207
|
+
</dependency>
|
208
|
+
|
209
|
+
<dependency>
|
210
|
+
|
211
|
+
<groupId>org.apache.tomcat</groupId>
|
212
|
+
|
213
|
+
<artifactId>tomcat-tribes</artifactId>
|
214
|
+
|
215
|
+
<version>8.5.9</version>
|
216
|
+
|
217
|
+
</dependency>
|
218
|
+
|
219
|
+
<dependency>
|
220
|
+
|
221
|
+
<groupId>org.apache.tomcat</groupId>
|
222
|
+
|
223
|
+
<artifactId>tomcat-catalina</artifactId>
|
224
|
+
|
225
|
+
<version>8.5.9</version>
|
226
|
+
|
227
|
+
</dependency>
|
228
|
+
|
229
|
+
<dependency>
|
230
|
+
|
231
|
+
<groupId>org.apache.tomcat</groupId>
|
232
|
+
|
233
|
+
<artifactId>tomcat-jni</artifactId>
|
234
|
+
|
235
|
+
<version>8.5.9</version>
|
236
|
+
|
237
|
+
</dependency>
|
238
|
+
|
239
|
+
<dependency>
|
240
|
+
|
241
|
+
<groupId>org.apache.tomcat</groupId>
|
242
|
+
|
243
|
+
<artifactId>tomcat-websocket-api</artifactId>
|
244
|
+
|
245
|
+
<version>8.5.9</version>
|
246
|
+
|
247
|
+
</dependency>
|
248
|
+
|
249
|
+
<dependency>
|
250
|
+
|
251
|
+
<groupId>org.apache.tomcat</groupId>
|
252
|
+
|
253
|
+
<artifactId>tomcat-coyote</artifactId>
|
254
|
+
|
255
|
+
<version>8.5.9</version>
|
256
|
+
|
257
|
+
</dependency>
|
258
|
+
|
259
|
+
<dependency>
|
260
|
+
|
261
|
+
<groupId>org.apache.tomcat</groupId>
|
262
|
+
|
263
|
+
<artifactId>tomcat-catalina-ha</artifactId>
|
264
|
+
|
265
|
+
<version>8.5.9</version>
|
266
|
+
|
267
|
+
</dependency>
|
268
|
+
|
269
|
+
<dependency>
|
270
|
+
|
271
|
+
<groupId>org.apache.tomcat</groupId>
|
272
|
+
|
273
|
+
<artifactId>tomcat-api</artifactId>
|
274
|
+
|
275
|
+
<version>8.5.9</version>
|
276
|
+
|
277
|
+
</dependency>
|
278
|
+
|
279
|
+
<dependency>
|
280
|
+
|
281
|
+
<groupId>org.apache.tomcat</groupId>
|
282
|
+
|
283
|
+
<artifactId>tomcat-annotations-api</artifactId>
|
284
|
+
|
285
|
+
<version>8.5.9</version>
|
286
|
+
|
287
|
+
</dependency>
|
288
|
+
|
289
|
+
<dependency>
|
290
|
+
|
291
|
+
<groupId>org.apache.tomcat</groupId>
|
292
|
+
|
293
|
+
<artifactId>tomcat-jaspic-api</artifactId>
|
294
|
+
|
295
|
+
<version>8.5.9</version>
|
296
|
+
|
297
|
+
</dependency>
|
298
|
+
|
299
|
+
<dependency>
|
300
|
+
|
301
|
+
<groupId>org.apache.tomcat</groupId>
|
302
|
+
|
303
|
+
<artifactId>tomcat-catalina-ant</artifactId>
|
304
|
+
|
305
|
+
<version>8.5.9</version>
|
306
|
+
|
307
|
+
</dependency>
|
308
|
+
|
309
|
+
<dependency>
|
310
|
+
|
311
|
+
<groupId>org.apache.tomcat</groupId>
|
312
|
+
|
313
|
+
<artifactId>tomcat-servlet-api</artifactId>
|
314
|
+
|
315
|
+
<version>8.5.9</version>
|
316
|
+
|
317
|
+
</dependency>
|
318
|
+
|
319
|
+
<dependency>
|
320
|
+
|
321
|
+
<groupId>org.apache.tomcat</groupId>
|
322
|
+
|
323
|
+
<artifactId>tomcat-util-scan</artifactId>
|
324
|
+
|
325
|
+
<version>8.5.9</version>
|
326
|
+
|
327
|
+
</dependency>
|
328
|
+
|
329
|
+
<dependency>
|
330
|
+
|
331
|
+
<groupId>org.apache.tomcat</groupId>
|
332
|
+
|
333
|
+
<artifactId>tomcat-i18n-ja</artifactId>
|
334
|
+
|
335
|
+
<version>8.5.9</version>
|
336
|
+
|
337
|
+
</dependency>
|
338
|
+
|
339
|
+
<dependency>
|
340
|
+
|
341
|
+
<groupId>org.eclipse.jdt.core.compiler</groupId>
|
342
|
+
|
343
|
+
<artifactId>ecj</artifactId>
|
344
|
+
|
345
|
+
<version>4.5.1</version>
|
346
|
+
|
347
|
+
</dependency>
|
348
|
+
|
349
|
+
<dependency>
|
350
|
+
|
351
|
+
<groupId>org.apache.tomcat</groupId>
|
352
|
+
|
353
|
+
<artifactId>tomcat-jdbc</artifactId>
|
354
|
+
|
355
|
+
<version>8.5.9</version>
|
356
|
+
|
357
|
+
</dependency>
|
358
|
+
|
359
|
+
<dependency>
|
360
|
+
|
361
|
+
<groupId>org.apache.tomcat</groupId>
|
362
|
+
|
363
|
+
<artifactId>tomcat-i18n-fr</artifactId>
|
364
|
+
|
365
|
+
<version>8.5.9</version>
|
366
|
+
|
367
|
+
</dependency>
|
368
|
+
|
369
|
+
<dependency>
|
370
|
+
|
371
|
+
<groupId>org.apache.tomcat</groupId>
|
372
|
+
|
373
|
+
<artifactId>tomcat-dbcp</artifactId>
|
374
|
+
|
375
|
+
<version>8.5.9</version>
|
376
|
+
|
377
|
+
</dependency>
|
378
|
+
|
379
|
+
<dependency>
|
380
|
+
|
381
|
+
<groupId>org.springframework</groupId>
|
382
|
+
|
383
|
+
<artifactId>spring-web</artifactId>
|
384
|
+
|
385
|
+
<version>4.3.11.RELEASE</version>
|
386
|
+
|
387
|
+
</dependency>
|
388
|
+
|
389
|
+
<dependency>
|
390
|
+
|
391
|
+
<groupId>org.springframework</groupId>
|
392
|
+
|
393
|
+
<artifactId>spring-webmvc</artifactId>
|
394
|
+
|
395
|
+
<version>4.3.11.RELEASE</version>
|
396
|
+
|
397
|
+
</dependency>
|
398
|
+
|
399
|
+
</dependencies>
|
400
|
+
|
401
|
+
<build>
|
402
|
+
|
403
|
+
<finalName>ROOT</finalName>
|
404
|
+
|
405
|
+
<sourceDirectory>src</sourceDirectory>
|
406
|
+
|
407
|
+
<plugins>
|
408
|
+
|
409
|
+
<plugin>
|
410
|
+
|
411
|
+
<artifactId>maven-compiler-plugin</artifactId>
|
412
|
+
|
413
|
+
<version>3.7.0</version>
|
414
|
+
|
415
|
+
<configuration>
|
416
|
+
|
417
|
+
<source>1.8</source>
|
418
|
+
|
419
|
+
<target>1.8</target>
|
420
|
+
|
421
|
+
</configuration>
|
422
|
+
|
423
|
+
</plugin>
|
424
|
+
|
425
|
+
<plugin>
|
426
|
+
|
427
|
+
<artifactId>maven-war-plugin</artifactId>
|
428
|
+
|
429
|
+
<version>3.0.0</version>
|
430
|
+
|
431
|
+
<configuration>
|
432
|
+
|
433
|
+
<warSourceDirectory>WebContent/build/default</warSourceDirectory>
|
434
|
+
|
435
|
+
</configuration>
|
436
|
+
|
437
|
+
</plugin>
|
438
|
+
|
439
|
+
</plugins>
|
440
|
+
|
441
|
+
</build>
|
442
|
+
|
443
|
+
</project>
|
444
|
+
|
445
|
+
```
|
1
私の開発環境を追記しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -51,3 +51,45 @@
|
|
51
51
|
|
52
52
|
|
53
53
|
重ねてよろしくお願いします。
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
---
|
58
|
+
|
59
|
+
追記
|
60
|
+
|
61
|
+
|
62
|
+
|
63
|
+
macOS High Sierra
|
64
|
+
|
65
|
+
バージョン 10.13.4
|
66
|
+
|
67
|
+
|
68
|
+
|
69
|
+
Eclipse IDE for Java Developers
|
70
|
+
|
71
|
+
Version: Photon Release (4.8.0)
|
72
|
+
|
73
|
+
Build id: 20180619-1200
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
$ java -version
|
78
|
+
|
79
|
+
java version "1.8.0_181"
|
80
|
+
|
81
|
+
Java(TM) SE Runtime Environment (build 1.8.0_181-b13)
|
82
|
+
|
83
|
+
...
|
84
|
+
|
85
|
+
|
86
|
+
|
87
|
+
$ /usr/local/tomcat8/bin/version.sh
|
88
|
+
|
89
|
+
...
|
90
|
+
|
91
|
+
Server version: Apache Tomcat/8.5.33
|
92
|
+
|
93
|
+
Server built: Aug 12 2018 08:20:08 UTC
|
94
|
+
|
95
|
+
...
|