今天想将项目的jdk版本从8升级到11,maven编译时遇到了下面的问题

错误日志

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project myadmin: Fatal error compiling: java.lang.ExceptionInInitializerError: com.sun.tools.javac.code.TypeTags -> [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

解决方法

通过网上查资料,原因是lombok的版本太低造成的,我使用的是1.16.4,不支持jdk10及以上,换成1.18.4就好了。
lombok可以查看lombok各个版本的更新情况。

相关文章:

  • 2021-07-11
  • 2022-12-23
  • 2021-09-06
  • 2021-05-08
  • 2021-06-15
  • 2021-07-07
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-05-11
  • 2021-07-15
  • 2021-11-11
  • 2022-01-20
  • 2022-12-23
  • 2021-09-06
相关资源
相似解决方案