SpringBoot添加依赖包Could not transfer artifact XXX from/to central错误的问题

写在前面

出现该问题是因为没有配置Maven仓库,引用阿里云的代理仓库就可解决该问题。文章可能还有很多不足,请大家谅解,欢迎大佬提意见。

本文使用的东西

  1. IntelliJ 2019
  2. SpringBoot项目

文章目录

    • 写在前面
    • 本文使用的东西
    • 1.解决方法
    • 2.总结

1.解决方法

1.在pom.xml中加入以下内容:

    <repositories>
        <repository>
            <id>maven-aliid>
            <url>http://maven.aliyun.com/nexus/content/repositories/centralurl>
            <releases>
                <enabled>trueenabled>
            releases>
            <snapshots>
                <enabled>trueenabled>
                <updatePolicy>alwaysupdatePolicy>
                <checksumPolicy>failchecksumPolicy>
            snapshots>
        repository>
    repositories>

SpringBoot添加依赖包Could not transfer artifact XXX from/to central错误的问题_第1张图片

2.总结

关于该错误的解决到此结束,有不清楚的地方欢迎评论留言,看到的我都会回复的。本文到此结束,有什么不足的地方请大家不吝指正。

你可能感兴趣的:(Spring,SpringBoot,Pom,添加依赖包问题)