出现此构建错误
error: diamond operator is not supported in -source 1.5
我想将源编译器版本提升到1.7如何在eclipse中执行此操作?
答案 0 :(得分:1)
在pom.xml
寻找模糊
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
</configuration>
</plugin>
并相应地改变。
干杯,