[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 15:22:12 浏览: 302
cmake-tools.vsix
这个输出是使用 Maven 构建 Java 项目时出现的错误信息。错误是由于 Maven 编译器插件尝试使用无效的参数 "--release" 引起的。 这个参数是在 JDK 9 中引入的,用于指定生成的字节码版本。 为了解决这个问题,你需要检查项目的 Maven 配置,确保使用的是适当的 JDK 版本,并且确保编译器插件的版本支持该参数。
阅读全文