我用的是jdk 11和maven 3.8.0。请找到下面给定的pom.xml。我得到了错误
编译时出错:无效标志:--release-
关于如何解决这个问题有什么建议吗?
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.0</version>
<configuration>
<release>11</release>
<encoding>UTF-8</encoding>
</configuration>
<dependencies>
<dependency>
<groupId>org.ow2.asm</groupId>
<artifactId>asm</artifactId>
<version>7.1</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</pluginManagement>
</build>
获取错误
Aug 1 15:50:11 [WARNING] The requested profile "inttest" could not be activated because it does not exist.
Aug 1 15:50:11 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.0:testCompile (default-testCompile) on project some-service: Fatal error compiling: invalid flag: --release -> [Help 1]
Aug 1 15:50:11 [ERROR]
Aug 1 15:50:11 [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
Aug 1 15:50:11 [ERROR] Re-run Maven using the -X switch to enable full debug logging.
Aug 1 15:50:11 [ERROR]
Aug 1 15:50:11 [ERROR] For more information about the errors and possible solutions, please read the following articles:
Aug 1 15:50:11 [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoExecutionException
此错误通常发生在您使用时
mvn --version
应该给你
Apache Maven 3.6.3 (cecedd343002696d0abb50b32b541b8a6ba2883f)
Maven home: /opt/maven
Java version: 11.0.7, vendor: Oracle Corporation, runtime: /home/.../.sdkman/candidates/java/11.0.7-open
Default locale: en_US, platform encoding: UTF-8
OS name: "linux", version: "5.8.10-200.fc32.x86_64", arch: "amd64", family: "unix" ```
我正在使用Codeanywhere,我需要用Maven运行一个web服务器。但是它给了我这个错误:致命的错误编译:无效的目标发布:12->[帮助1],这也是在图像中看到的,但是我不明白如何修复它。
问题内容: 类似的问题,例如在无效目标版本上发布的问题:1.7,但是在关注博客之后,我的问题仍然没有解决。 无法在项目hm_app上执行目标org.apache.maven.plugins:maven-compiler- plugin:3.1:compile(默认编译):致命错误编译:无效目标版本:1.8-> [帮助1] 遇到此问题时,我正在按照教程进行操作。 输出 问题答案: 您已将jdk 设置
我正在IntelliJ上运行一个Java Maven项目,我确保这个项目将由Java1.8编译。 而且 当我运行该项目时,我得到一个错误: 无法执行目标org.apache.maven.plugins:maven-compiler-plugin:3.0:project feed_matcher上的compile(default-compile):编译错误:无效的目标版本:1.8->[帮助1] 你知
我是测试自动化工程师,我已经为自动化脚本配置了Jenkins和maven项目,几天前我的所有脚本在Jenkins和本地运行良好,但现在当我通过异常运行build in Jenkins和本地系统时,在本地,当我尝试更新我的maven项目并通过命令“maven test”运行脚本时,它工作正常,当我尝试运行命令“maven clean”,然后以“maven test”的形式运行命令时,所有脚本都会运行
当我运行这个命令时,我试图将我的后端应用程序部署到heroku bun 我得到这个错误 这是我的pom文件: