Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 415 Bytes

03.md

File metadata and controls

23 lines (18 loc) · 415 Bytes

3. pom.xmlのJavaのバージョンを上げよう

pom.xml の以下の部分を修正(1.7 → 1.8)

...
<plugin>
  <groupId>org.apache.maven.plugins</groupId>
  <artifactId>maven-compiler-plugin</artifactId>
  <version>2.5.1</version>
  <inherited>true</inherited>
  <configuration>
    <source>1.8</source>
    <target>1.8</target>
  </configuration>
</plugin>
...

--

戻る