質問編集履歴
1
mvn clean packageの実行結果を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -88,6 +88,86 @@
|
|
88
88
|
|
89
89
|
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
|
90
90
|
|
91
|
+
```
|
92
|
+
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
### mvn clean packageの実行結果
|
98
|
+
|
99
|
+
```ここに言語を入力
|
100
|
+
|
101
|
+
[INFO] Scanning for projects...
|
102
|
+
|
103
|
+
[INFO]
|
104
|
+
|
105
|
+
[INFO] -----------------------< jp.co.e_cyber:air2020 >------------------------
|
106
|
+
|
107
|
+
[INFO] Building air2020 v0.0.1
|
108
|
+
|
109
|
+
[INFO] --------------------------------[ war ]---------------------------------
|
110
|
+
|
111
|
+
[INFO]
|
112
|
+
|
113
|
+
[INFO] --- maven-clean-plugin:2.6.1:clean (default-clean) @ air2020 ---
|
114
|
+
|
115
|
+
[INFO] Deleting C:\Users\kawata\Desktop\web\air2020_core\target
|
116
|
+
|
117
|
+
[INFO]
|
118
|
+
|
119
|
+
[INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ air2020 ---
|
120
|
+
|
121
|
+
[INFO] Using 'UTF-8' encoding to copy filtered resources.
|
122
|
+
|
123
|
+
[INFO] Copying 3 resources
|
124
|
+
|
125
|
+
[INFO] Copying 4347 resources
|
126
|
+
|
127
|
+
[INFO]
|
128
|
+
|
129
|
+
[INFO] --- maven-compiler-plugin:3.1:compile (default-compile) @ air2020 ---
|
130
|
+
|
131
|
+
[INFO] Changes detected - recompiling the module!
|
132
|
+
|
133
|
+
[INFO] Compiling 914 source files to C:\Users\kawata\Desktop\web\air2020_core\target\classes
|
134
|
+
|
135
|
+
WARNING: An illegal reflective access operation has occurred
|
136
|
+
|
137
|
+
WARNING: Illegal reflective access by lombok.javac.apt.LombokProcessor to field com.sun.tools.javac.processing.JavacProcessingEnvironment.discoveredProcs
|
138
|
+
|
139
|
+
WARNING: Please consider reporting this to the maintainers of lombok.javac.apt.LombokProcessor
|
140
|
+
|
141
|
+
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
|
142
|
+
|
143
|
+
WARNING: All illegal access operations will be denied in a future release
|
144
|
+
|
145
|
+
[INFO] ------------------------------------------------------------------------
|
146
|
+
|
147
|
+
[INFO] BUILD FAILURE
|
148
|
+
|
149
|
+
[INFO] ------------------------------------------------------------------------
|
150
|
+
|
151
|
+
[INFO] Total time: 39.170 s
|
152
|
+
|
153
|
+
[INFO] Finished at: 2019-09-20T17:56:59+09:00
|
154
|
+
|
155
|
+
[INFO] ------------------------------------------------------------------------
|
156
|
+
|
157
|
+
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.1:compile (default-compile) on project air2020: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags -> [Help 1]
|
158
|
+
|
159
|
+
[ERROR]
|
160
|
+
|
161
|
+
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
|
162
|
+
|
163
|
+
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
|
164
|
+
|
165
|
+
[ERROR]
|
166
|
+
|
167
|
+
[ERROR] For more information about the errors and possible solutions, please read the following articles:
|
168
|
+
|
169
|
+
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
|
170
|
+
|
91
171
|
|
92
172
|
|
93
173
|
```
|