如何将Maven源编译器版本提升为JDK 7

时间:2014-12-01 11:24:38

标签: java maven

出现此构建错误

error: diamond operator is not supported in -source 1.5

我想将源编译器版本提升到1.7如何在eclipse中执行此操作?

1 个答案:

答案 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>

并相应地改变。

干杯,