解决IDEA设置language level失败

2018-01-18  本文已影响37人  seawish

问题描述

新建Maven项目,运行代码,一直报错:
Information:Using javac 1.7.0_79 to compile java sources
Information:java: javacTask: 源发行版 1.7 需要目标发行版 1.7
Information:java: Errors occurred while compiling module 'xxx'
Information:15/8/14 下午11:08 - Compilation completed with 1 error and 0 warnings in 1s 913ms
Error:java: Compilation failed: internal java compiler error

解决

pom.xml文件中添加配置:

<properties>
  <maven.compiler.source>1.8</maven.compiler.source>
  <maven.compiler.target>1.8</maven.compiler.target>
</properties>

参考

Intellij IDEA Module 的Language Level的问题

上一篇下一篇

猜你喜欢

热点阅读