maven install jdk版本自动降为1.7
开发过程中遇到了一个奇怪的现象。
IDEA中所有的设置都改成了1.8,但是在执行maven install时却自动降为1.7,报错提示:
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.6.1:compile (default-compile) on project : Compilation failure: Compilation failure:
[ERROR] xxx -source 1.7 中不支持方法引用
[ERROR] (请使用 -source 8 或更高版本以启用方法引用)
参考链接:
https://blog.csdn.net/gnail_oug/article/details/77507614
对IDEA配置进行了修改,依旧不行。
看到maven的settings配置里是1.7
修改成1.8,问题修复!