Maven Tycho 编译失败
Maven Tycho compilation failure
我正在使用 maven 和 tycho 插件构建 eclipse RCP 应用程序。我使用了一些 java 8 功能,例如 lambda 表达式,但由于编译失败而无法正确构建。
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile (default-compile) on project ***.***: Compilation failure: Compilation failure:
[ERROR] .filter(Objects::nonNull)
[ERROR] ^^^^^^^^^^^^^^^^
[ERROR] Method references are allowed only at source level 1.8 or above
[ERROR] 2 problems (2 errors)
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
我的问题是:
- 你认为文件 .settings/org.eclipse.jdt.core.prefs 和 .classpath(我猜不是为了这个)对于构建maven tycho是必要的吗?我必须在这些文件中明确定义 java 8 吗?
- 我是否必须在 pom 文件中指定其他内容?
您必须在 pom.xml
文件中指定源级别:
<project>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>
这个和tycho无关,是编译器插件
您也可以配置插件本身。
请参考this page。
如the tycho-compiler-plugin documentation所述,文件.settings/org.eclipse.jdt.core.prefs中的信息将传递给编译器。
然后需要更新文件如下:
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.source=1.8
我遇到了同样的问题,解决方案是将 JAVA_HOME 设置为右侧 JDK。
我正在使用 maven 和 tycho 插件构建 eclipse RCP 应用程序。我使用了一些 java 8 功能,例如 lambda 表达式,但由于编译失败而无法正确构建。
[ERROR] Failed to execute goal org.eclipse.tycho:tycho-compiler-plugin:1.0.0:compile (default-compile) on project ***.***: Compilation failure: Compilation failure:
[ERROR] .filter(Objects::nonNull)
[ERROR] ^^^^^^^^^^^^^^^^
[ERROR] Method references are allowed only at source level 1.8 or above
[ERROR] 2 problems (2 errors)
[ERROR] -> [Help 1]
[ERROR]
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR]
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException
我的问题是:
- 你认为文件 .settings/org.eclipse.jdt.core.prefs 和 .classpath(我猜不是为了这个)对于构建maven tycho是必要的吗?我必须在这些文件中明确定义 java 8 吗?
- 我是否必须在 pom 文件中指定其他内容?
您必须在 pom.xml
文件中指定源级别:
<project>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
</project>
这个和tycho无关,是编译器插件
您也可以配置插件本身。
请参考this page。
如the tycho-compiler-plugin documentation所述,文件.settings/org.eclipse.jdt.core.prefs中的信息将传递给编译器。
然后需要更新文件如下:
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
org.eclipse.jdt.core.compiler.compliance=1.8
org.eclipse.jdt.core.compiler.source=1.8
我遇到了同样的问题,解决方案是将 JAVA_HOME 设置为右侧 JDK。