-source 1.5 中不支持泛型(请使用-source5或更高版本)

时间:2023-03-09 00:55:02
-source 1.5 中不支持泛型(请使用-source5或更高版本)

Idea中maven--compile时报错     -source 1.5 中不支持泛型(请使用-source5或更高版本)

解决办法

在项目的pom.xml中,添加

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
</plugins>
</build> 原因:个人感觉pom.xml缺少了maven的一些插件
-source 1.5 中不支持泛型(请使用-source5或更高版本)