0

尝试运行以下组合:

  • Maven (3.6.1)
  • 开放JDK 11
  • 使用 module-info.java
Fails with the following error message:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project tourconex: Fatal error compiling: Fa
iled to run the ecj compiler: Unrecognized option : --module-version -> [Help 1]

曾尝试添加空白的compilerArgs 节点,但无济于事。

删除 module-info.java 解决了这个问题,但这不是我想要的。

另外,查看了源http://central.maven.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/3.8.1/

特别是在 CompilerMojo.java 的来源:

module-version 总是被添加,所以似乎没有办法抑制它:

compilerArgs.add( "--module-version" );
compilerArgs.add( getProject().getVersion() );

查看 ecj 的文档,没有“模块版本”参数

https://help.eclipse.org/oxygen/index.jsp?topic=%2Forg.eclipse.jdt.doc.user%2Ftasks%2Ftask-using_batch_compiler.htm

所以现在看来​​它是行不通的!?

Maven插件部分:

<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.1</version>
    <configuration>
        <compilerId>eclipse</compilerId>
        <source>11</source>
        <target>11</target>
        <release>11</release>
        <showWarnings>true</showWarnings>
        <showDeprecation>true</showDeprecation>
    </configuration>
    <dependencies>
        <dependency>
            <groupId>org.codehaus.plexus</groupId>
            <artifactId>plexus-compiler-eclipse</artifactId>
            <version>2.8.5</version>
        </dependency>
        <dependency>
            <groupId>org.eclipse.jdt</groupId>
            <artifactId>ecj</artifactId>
            <version>3.17.0</version>
        </dependency>
    </dependencies>
</plugin>
4

2 回答 2

0

直到现在ecj还不支持该选项--module-version

由于几个可能的原因,它可能已经从裂缝中消失了:

  • 没人关心,因为模块版本没有被 JVM 或其他工具评估
  • 也许在 Java 9 GA 之前它没有被指定为新的编译器选项(http://openjdk.java.net/jeps/261没有版本历史,但我知道文本在发布当天发生了重大变化)。

请在https://bugs.eclipse.org/bugs/enter_bug.cgi?product=JDT提交功能请求

编辑:您的功能请求已实现。虽然我们错过了今天发布的 Eclipse 2019-06,但您可以从https://download.eclipse.org/eclipse/downloads/index.html下方的下一个集成构建中获取 ecj.jar - 下一个完整版本计划于 9 月发布。

Edit2:经过更多研究,最简单的解决方法可能是回到不尝试传递--module-version给编译器的 maven-compiler-plugin 版本 3.8.0。这只发生在今年 5 月发布的 3.8.1 之后。

于 2019-06-11T11:15:59.137 回答
0

在 eclipse.org 上打开的问题/功能请求:https ://bugs.eclipse.org/bugs/show_bug.cgi?id=548195

于 2019-06-12T16:15:25.107 回答