我在IntelliJ IDEA中有一个maven项目;
当我使用mvn test
运行测试时,一切都很好,但是当我使用
IntelliJ IDEA上的绿色箭头出现此错误:Error:java: release version 5 not supported
答案 0 :(得分:1)
尝试添加
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
到您的POM文件。
或者:
答案 1 :(得分:1)
转到:文件->项目结构->项目并将Project SDK配置为1.8