[INFO] Scanning for projects... [INFO] [INFO] -----------------------< com.example:helloworld >----------------------- [INFO] Building helloworld 0.0.1-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-resources-plugin:3.3.1:resources (default-resources) @ helloworld --- [INFO] Copying 1 resource from src\main\resources to target\classes [INFO] Copying 0 resource from src\main\resources to target\classes [INFO] [INFO] --- maven-compiler-plugin:3.11.0:compile (default-compile) @ helloworld --- [INFO] Changes detected - recompiling the module! :source [INFO] Compiling 2 source files with javac [debug release 8] to target\classes [INFO] ------------------------------------------------------------------------ [INFO] BUILD FAILURE [INFO] ------------------------------------------------------------------------ [INFO] Total time: 2.021 s [INFO] Finished at: 2023-06-01T17:11:31+08:00 [INFO] ------------------------------------------------------------------------ [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.11.0:compile (default-compile) on project helloworld: Fatal error compiling: 无效的标记: --release -> [Help 1]
时间: 2023-08-27 17:22:12 浏览: 318
这个输出是使用 Maven 构建 Java 项目时出现的错误信息。错误是由于 Maven 编译器插件尝试使用无效的参数 "--release" 引起的。 这个参数是在 JDK 9 中引入的,用于指定生成的字节码版本。 为了解决这个问题,你需要检查项目的 Maven 配置,确保使用的是适当的 JDK 版本,并且确保编译器插件的版本支持该参数。
相关问题
[info] scanning for projects... [error] [error] some problems were encountered while processing the poms: [fatal] non-parseable pom c:\users\zheyucui\ideaprojects\ada_biz_observability_controlservices_devocms\hive_worker\pom.xml: text must be immediately
这个信息表示程序正在扫描项目,但在处理其中一个项目的POM文件时遇到了问题,具体是该项目的POM文件在c:\\users\\zheyucui\\ideaprojects\\ada_biz_observability_controlservices_devocms\\hive_worker\\pom.xml处,因为POM文件中的文本格式不正确无法解析,需要修正该问题才能继续处理该项目。
[INFO] Scanning for projects... [ERROR] [ERROR] Some problems were encountered while processing the POMs: [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: commons-io:commons-io:jar -> duplicate declaration of version 2.4 @ line 232, column 21 [FATAL] 'dependencies.dependency[org.example:online-meal-order:1.0-SNAPSHOT]' for org.example:online-meal-order:1.0-SNAPSHOT is referencing itself. @ line 251, column 21 @
这是一个 Maven 的错误信息,指出了项目的依赖存在重复声明和自我引用的问题。
第一个问题是关于 commons-io 的版本重复声明。你需要检查项目的 pom.xml 文件中是否有两个或多个相同的依赖声明了版本为 2.4 的 commons-io。
第二个问题是关于自我引用的问题。你需要检查项目的 pom.xml 文件中是否存在对自身的引用。可能是因为某个依赖项被错误地声明为项目本身。
阅读全文