質問編集履歴

2

pom.xmlにコンパイルのバージョンを固定する記述を追記

2018/08/03 06:46

投稿

Taki_Le
Taki_Le

スコア9

test CHANGED
File without changes
test CHANGED
@@ -158,6 +158,36 @@
158
158
 
159
159
  </dependency>
160
160
 
161
+
162
+
163
+ #追記
164
+
165
+ <plugin>
166
+
167
+ <groupId>org.apache.maven.plugins</groupId>
168
+
169
+ <artifactId>maven-compiler-plugin</artifactId>
170
+
171
+ <version>3.6.1</version>
172
+
173
+ <configuration>
174
+
175
+ <compilerArgs>
176
+
177
+ <arg>-profile</arg>
178
+
179
+ <arg>compact1</arg>
180
+
181
+ </compilerArgs>
182
+
183
+ <source>1.8</source>
184
+
185
+ <target>1.8</target>
186
+
187
+ </configuration>
188
+
189
+ </plugin>
190
+
161
191
  ```
162
192
 
163
193
  ### 試したこと

1

誤字修正

2018/08/03 06:46

投稿

Taki_Le
Taki_Le

スコア9

test CHANGED
File without changes
test CHANGED
File without changes