致命错误编译:无法 运行 ecj 编译器:无法识别的选项:--module-version
Fatal error compiling: Failed to run the ecj compiler: Unrecognized option : --module-version
尝试运行以下组合:
- Maven (3.6.1)
- OpenJDK 11
- 有模块-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 节点,但无济于事。
删除模块-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 的文档,没有 "module-version" 参数
这么说好像暂时行不通了!?
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>
到目前为止 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,但您可以从下面的下一个集成版本中获取 ecj.jar https://download.eclipse.org/eclipse/downloads/index.html - 下一个完整版本计划于 9 月发布。
Edit2: 经过更多研究,最简单的解决方法可能是返回到 maven-compiler-plugin 的 3.8.0 版本,它不会尝试通过 --module-version
给编译器。自今年 5 月发布 3.8.1 后才发生这种情况。
在 eclipse.org 上打开的问题/功能请求:https://bugs.eclipse.org/bugs/show_bug.cgi?id=548195
尝试运行以下组合:
- Maven (3.6.1)
- OpenJDK 11
- 有模块-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 节点,但无济于事。
删除模块-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 的文档,没有 "module-version" 参数
这么说好像暂时行不通了!?
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>
到目前为止 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,但您可以从下面的下一个集成版本中获取 ecj.jar https://download.eclipse.org/eclipse/downloads/index.html - 下一个完整版本计划于 9 月发布。
Edit2: 经过更多研究,最简单的解决方法可能是返回到 maven-compiler-plugin 的 3.8.0 版本,它不会尝试通过 --module-version
给编译器。自今年 5 月发布 3.8.1 后才发生这种情况。
在 eclipse.org 上打开的问题/功能请求:https://bugs.eclipse.org/bugs/show_bug.cgi?id=548195