阿里云镜像仓库org.springframework.boot:spring-boot-maven-plugin版本更新导致打包失败问题&&class file version 61.0 适配失败

  • Post author:
  • Post category:其他


Maven 打包时出错,完整错误日志如下

ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:3.0.0:repackage (default) on project xxx: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:3.0.0:repackage failed: Unable to load the mojo ‘repackage’ in the plugin ‘org.springframework.boot:spring-boot-maven-plugin:3.0.0’ due to an API incompatibility: org.codehaus.plexus.component.repository.exception.ComponentLookupException: org/springframework/boot/maven/RepackageMojo has been compiled by a more recent version of the Java Runtime (class file version 61.0), this version of the Java Runtime only recognizes class file versions up to 52.0

maven打包失败的最主要问题就是,生产环境构建服务时使用了阿里云镜像,昨晚阿里云更新最新的 spring-boot-maven-plugin 插件版本如下

在这里插入图片描述

由于生产环境的pom文件没有指定该插件的版本号,导致一直拉取的都是最新的版本,而最新的spring-boot-maven-plugin 支持Class编译版本号为61,只有jdk17才能够适配

解决方案:指定spring-boot-maven-plugin verion号,与当前环境jdk版本适配就行

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-maven-plugin</artifactId>
    <version>2.3.5.RELEASE</version>
    <type>pom</type>
</dependency>

更换之后,重新 mvn clean && mvn install 即可


该bug由部门老大发现并找到解决方法,这里记录一下,有其他疑问的小伙伴欢迎评论区留言



版权声明:本文为weixin_46195957原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。