Maven Surefire插件没有使用–enable-preview模式。

huangapple 未分类评论41阅读模式
英文:

maven surefire plugin not using --enable-preview mode

问题

这是我的pom.xml文件:

  1. ...
  2. <plugin>
  3. <groupId>org.apache.maven.plugins</groupId>
  4. <artifactId>maven-compiler-plugin</artifactId>
  5. <version>3.8.1</version>
  6. <configuration>
  7. <source>13</source>
  8. <target>13</target>
  9. <release>13</release>
  10. <compilerArgs>
  11. --enable-preview
  12. </compilerArgs>
  13. </configuration>
  14. </plugin>
  15. ...
  16. <plugin>
  17. <groupId>org.apache.maven.plugins</groupId>
  18. <artifactId>maven-surefire-plugin</artifactId>
  19. <version>2.22.2</version>
  20. <configuration>
  21. <reuseForks>false</reuseForks>
  22. <argLine>--enable-preview</argLine>
  23. </configuration>
  24. </plugin>

问题在于构建过程没有问题,但是在运行测试时出现以下错误:

  1. [ERROR] Failed to execute goal
  2. org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test
  3. (default-test) on project foo-project: Execution default-test of goal
  4. org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test failed:
  5. java.lang.UnsupportedClassVersionError: Preview features are not
  6. enabled for it/project/MyTest (class file version 57.65535). Try
  7. running with '--enable-preview' -> [Help 1]

我应该在pom.xml中插入什么内容,以便在启用预览模式的情况下执行测试呢?

谢谢。

英文:

Here it's my pom.xml:

  1. ...
  2. &lt;plugin&gt;
  3. &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
  4. &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
  5. &lt;version&gt;3.8.1&lt;/version&gt;
  6. &lt;configuration&gt;
  7. &lt;source&gt;13&lt;/source&gt;
  8. &lt;target&gt;13&lt;/target&gt;
  9. &lt;release&gt;13&lt;/release&gt;
  10. &lt;compilerArgs&gt;
  11. --enable-preview
  12. &lt;/compilerArgs&gt;
  13. &lt;/configuration&gt;
  14. &lt;/plugin&gt;
  15. ...
  16. &lt;plugin&gt;
  17. &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
  18. &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
  19. &lt;version&gt;2.22.2&lt;/version&gt;
  20. &lt;configuration&gt;
  21. &lt;reuseForks&gt;false&lt;/reuseForks&gt;
  22. &lt;argLine&gt;--enable-preview&lt;/argLine&gt;
  23. &lt;/configuration&gt;
  24. &lt;/plugin&gt;

The problem is that the build goes ok, but when tests are launched I get:

> [ERROR] Failed to execute goal
> org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test
> (default-test) on project foo-project: Execution default-test of goal
> org.apache.maven.plugins:maven-surefire-plugin:3.0.0-M4:test failed:
> java.lang.UnsupportedClassVersionError: Preview features are not
> enabled for it/project/MyTest (class file version 57.65535). Try
> running with '--enable-preview' -> [Help 1]

What I have to insert in pom.xml for executing tests with enabled preview mode?

Thanks.

答案1

得分: 1

我遇到了类似的问题。

  • Maven版本:3.8.1
  • Surefire版本:2.22.2
  • JK:13

我使用了&lt;reuseForks&gt;true&lt;/reuseForks&gt;,它正常工作了。

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<release>${java.version}</release>
<showWarnings>true</showWarnings>
<compilerArgs>
<compilerArg>-Xlint:unchecked,deprecation</compilerArg>
<compilerArg>--enable-preview</compilerArg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.plugin.version}</version>
<configuration>
<includes>
<include>**/*Test.java</include>
</includes>
<reuseForks>true</reuseForks>
<argLine>--enable-preview</argLine>
</configuration>
</plugin>

英文:

I had a similar problem.

  • Maven Version: 3.8.1
  • Surefire Version: 2.22.2
  • JK: 13

I used &lt;reuseForks&gt;true&lt;/reuseForks&gt; and it worked fine.

  1. &lt;plugin&gt;
  2. &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
  3. &lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;
  4. &lt;version&gt;${maven.compiler.plugin.version}&lt;/version&gt;
  5. &lt;configuration&gt;
  6. &lt;release&gt;${java.version}&lt;/release&gt;
  7. &lt;showWarnings&gt;true&lt;/showWarnings&gt;
  8. &lt;compilerArgs&gt;
  9. &lt;compilerArg&gt;-Xlint:unchecked,deprecation&lt;/compilerArg&gt;
  10. &lt;compilerArg&gt;--enable-preview&lt;/compilerArg&gt;
  11. &lt;/compilerArgs&gt;
  12. &lt;/configuration&gt;
  13. &lt;/plugin&gt;
  14. &lt;plugin&gt;
  15. &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;
  16. &lt;artifactId&gt;maven-surefire-plugin&lt;/artifactId&gt;
  17. &lt;version&gt;${surefire.plugin.version}&lt;/version&gt;
  18. &lt;configuration&gt;
  19. &lt;includes&gt;
  20. &lt;include&gt;**/*Test.java&lt;/include&gt;
  21. &lt;/includes&gt;
  22. &lt;reuseForks&gt;true&lt;/reuseForks&gt;
  23. &lt;argLine&gt;--enable-preview&lt;/argLine&gt;
  24. &lt;/configuration&gt;
  25. &lt;/plugin&gt;

huangapple
  • 本文由 发表于 2020年4月5日 22:21:15
  • 转载请务必保留本文链接:https://java.coder-hub.com/61044079.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定