Maven项目install时,报java版本错误

发布时间:2024年01月24日

maven项目执行了很多次,突然就install失败了,抛出异常信息:

org/springframework/boot/maven/repackagemojo has been compiled by a more recent version of the java?Runtime(class file version 61.0),this of the Java Runtime only recognizes class file vesions up to 52.0

解决方案

指定version即可

<plugin>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-maven-plugin</artifactId>
				<version>2.3.5.RELEASE</version>
				<executions>
					<execution>
						<goals>
							<goal>repackage</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
文章来源:https://blog.csdn.net/junzhen_chen/article/details/135788980
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。