Maven项目错误:-source 1.5中不支持Diamond / multicatch运算符

时间:2014-09-18 12:17:50

标签: java maven web diamond-operator multi-catch

由于以下两个错误,我无法构建我的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

enter image description here

enter image description here

可能导致此问题的原因以及如何解决?

我在pom.xml中添加了以下行后尝试构建它,但没有成功:

 <properties>
        <sourceJdk>1.8</sourceJdk>
        <targetJdk>1.8</targetJdk>
 </properties>

2 个答案:

答案 0 :(得分:16)

尝试在你的pom中声明maven-compiler-plugin

           <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.1</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>

答案 1 :(得分:1)

您也可以通过这种方式将其添加到您的pom.xml

 <properties>
   <maven.compiler.source>1.7</maven.compiler.source>
   <maven.compiler.target>1.7</maven.compiler.target>
</properties>