在pom.xml中更改为java8

时间:2015-07-07 11:07:42

标签: java maven

在pom.xml中将java版本更改为1.8后,在运行mvn install时仍会出现以下错误消息:

lambda expressions are not supported in -source 1.6 
(use -source 8 or higher to enable lambda expressions)

我的maven-compiler-plugin。

                <plugin>
                    <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-compiler-plugin</artifactId>
                    <configuration>
                        <source>1.8</source>
                        <target>1.8</target>
                          <compilerArguments>
                                <encoding>${project.build.sourceEncoding}</encoding>
                          </compilerArguments>
                    </configuration>
                </plugin>

2 个答案:

答案 0 :(得分:3)

尝试将此添加到您的pom.xml中:

<properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <maven.compiler.source>1.8</maven.compiler.source>
    <maven.compiler.target>1.8</maven.compiler.target>
</properties>

答案 1 :(得分:0)

我通过在<configuration>元素下添加以下内容来修复错误:

<testSource>1.8</testSource>
<testTarget>1.8</testTarget>