我是靠谱客的博主 傲娇航空,最近开发中收集的这篇文章主要介绍有效解决办法:marven:Fatal error compiling: 无效的目标发行版: 11,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

具体错误:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:testCompile (default-testCompile) on project teavm-tests: Fatal error compiling: 无效的目标发行版: 11 -> [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/MojoExecutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the command
[ERROR]   mvn <args> -rf :teavm-tests

打开对应的pom.xml,有如下内容:

       <plugin>
          <groupId>org.apache.maven.plugins</groupId>
          <artifactId>maven-compiler-plugin</artifactId>
          <version>${maven-compiler-plugin.version}</version>
          <configuration>
            <source>${java-tests.version}</source>
            <target>${java-tests.version}</target>
          </configuration>
        </plugin>

把source/target改为1.8是不对的。在pom.xml中应该有类似如下的配置:

    <java.version>1.8</java.version>
    <java-tests.version>11</java-tests.version>

吾把11改成1.8,就报一些接口找不到。所以,吾解决办法是提高了java.version。

最后

以上就是傲娇航空为你收集整理的有效解决办法:marven:Fatal error compiling: 无效的目标发行版: 11的全部内容,希望文章能够帮你解决有效解决办法:marven:Fatal error compiling: 无效的目标发行版: 11所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(37)

评论列表共有 0 条评论

立即
投稿
返回
顶部