错误描述

错误网上找了好久办法后还是没有解决

尝试方法包括:

1、配置maven中的文件夹保持一致

2、(5条消息) IDEA中找不到maven插件Plugin‘ ‘ not found 解决_小小夜影~的博客-CSDN博客

3、mavensettings.xml配置文件加入以下设置

<mirror>
    <id>mirrorId</id>
    &lt;mirrorOf&gt;central</mirrorOf&gt;
    <name&gt;Human Readable Name </name&gt;
    <url&gt;http://repo1.maven.org/maven2/</url&gt;
</mirror>

<!-- 阿里镜像 -->
<mirror> 
    <id>alimaven</id> 
    <name>aliyun maven</name> 
    <url>http://central.maven.org/maven2</url> 
    <mirrorOf>central</mirrorOf> 
</mirror>

<!-- 阿里镜像 -->
<mirror> 
    <id>alimaven</id> 
    <name>aliyun maven</name> 
    <url>http://maven.aliyun.com/nexus/content/repositories/central/</url> 
    <mirrorOf>central</mirrorOf> 
</mirror>

<!-- junit镜像地址 -->
<mirror> 
    <id>junit</id> 
    <name>junit Address/</name> 
    <url>http://jcenter.bintray.com/</url> 
    <mirrorOf>central</mirrorOf> 
</mirror>    
<mirror>
      <id>mirrorId</id>
      <mirrorOf>repositoryId</mirrorOf>
      <name>Human Readable Name for this Mirror.</name>
      <url>http://my.repository.com/repo/path</url>
    </mirror>
     -->
  </mirrors>

看到有人建议说调低maven版本,但不知如何操作

最后解决的方法是:将pom.xml中对maven的配置改为

<build>
    <plugins>
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <version>2.4.5</version>
        </plugin>
    </plugins>
</build>

原文地址:https://blog.csdn.net/kk23123/article/details/129326520

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_37304.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注