Maven 项目错误:-source 1.5 中不支持菱形/多通道运算符
2022-09-04 08:45:39
我无法构建我的maven java Web应用程序,因为以下两个错误:
diamond operator is not supported in -source 1.5
(use -source 7 or higher to enable diamond operator)
multi-catch statement is not supported in -source 1.5
(use -source 7 or higher to enable multi-catch statement)
我很困惑,因为我使用java 1.8.0作为我的项目,我从来没有真正使用过1.5
是什么原因导致此问题,我该如何解决?
在pom.xml中添加folllwing线后,我试图构建它,但没有成功:
<properties>
<sourceJdk>1.8</sourceJdk>
<targetJdk>1.8</targetJdk>
</properties>