码迷,mamicode.com
首页 > Web开发 > 详细

Failure to find parent:pom:2.2.6 in http://maven.aliyun was cached in the local repository...

时间:2020-03-29 18:19:11      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:pac   alt   mave   update   cat   无权限   start   frame   mamicode   

报错如下:

技术图片

 原因分析:主要是阿里云的Maven仓库无法更新这个版本的pom依赖;

解决过程:于是直接在pom里面添加阿里云maven,还是报同样的错误;看到网上说删除maven仓库的对应目录或目录下的*.lastUpdated文件,然后再次运行maven命令,然后再打包设置相关的属性,但是又报无权限访问的错误;    后来就想着要不更改pom的版本,将其降低点,即改为2.2.5就好了,如下图所示:

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.2.5.RELEASE</version>
        <relativePath/> <!-- lookup parent from repository -->
    </parent>


......

 

Failure to find parent:pom:2.2.6 in http://maven.aliyun was cached in the local repository...

标签:pac   alt   mave   update   cat   无权限   start   frame   mamicode   

原文地址:https://www.cnblogs.com/shijinglu2018/p/12593553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!