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

2023-07-29,,

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或更高版本)的相关教程结束。

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

下载本文的Word格式文档,以方便收藏与打印。