【mvn构建报错】ComponentLookupException Java Runtime only recognizes class file versions up to 52.0

操作步骤:

#环境:
jdk1.8 / jdk1.11 , maven 3.8.8

[root@node4 RuoYi-Cloud]# ls
bin  docker  LICENSE  pom.xml  README.md  ruoyi-api  ruoyi-auth  ruoyi-common  ruoyi-gateway  ruoyi-modules  ruoyi-ui  ruoyi-visual  sql

mvn clean package -Dmaven.test.skip=true

报错描述

ERROR] Failed to execute goal org.springframework.boot:spring-boot-maven-plugin:3.0.5:repackage (default) on project ruoyi-auth: Execution default of goal org.springframework.boot:spring-boot-maven-plugin:3.0.5:repackage failed: Unable to load the mojo 'repackage' in the plugin 'org.springframework.boot:spring-boot-maven-plugin:3.0.5' 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

【mvn构建报错】ComponentLookupException Java Runtime only recognizes class file versions up to 52.0_第1张图片

排障过程

看网上说是JDK版本低了。 我从jdk1.8换成jdk1.11还是报错。
最终处理方法,下载官网的源码包,mvn构建项目完成。
可能oldxu的zip包版本真的有问题。 在idea跑也是挂的。

官网的包:
【mvn构建报错】ComponentLookupException Java Runtime only recognizes class file versions up to 52.0_第2张图片

oldxu给的包,错误:
【mvn构建报错】ComponentLookupException Java Runtime only recognizes class file versions up to 52.0_第3张图片
官网的包,正常:
【mvn构建报错】ComponentLookupException Java Runtime only recognizes class file versions up to 52.0_第4张图片

你可能感兴趣的:(故障排错,java,maven)