美文网首页
解决IDEA设置language level失败

解决IDEA设置language level失败

作者: seawish | 来源:发表于2018-01-18 15:32 被阅读37次

问题描述

新建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的问题

相关文章

网友评论

      本文标题:解决IDEA设置language level失败

      本文链接:https://www.haomeiwen.com/subject/sfjwoxtx.html