V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
liangzai
V2EX  ›  程序员

maven 中心源地址更新为 https 的问题

  •  
  •   liangzai · 2020-01-19 16:09:05 +08:00 · 3143 次点击
    这是一个创建于 1551 天前的主题,其中的信息可能已经有所发展或是发生改变。

    声明:使用 maven 中心仓库遇到的问题,如果是阿里源可能没啥问题

    刚才 java 编译打包 maven 工程时,一直报错,看了下是 Maven dependencies are failing with a 501 error: user https://repo.maven.apache.org/maven2 ...

    于是查了下资料,参照修改了下本地配置.估摸着大家也会有这个问题吧.方案如下(不一定是唯一的): 1.Add a repository in your project´s pom.xml file

    <project> <repositories> <repository> <id>central maven repo</id> <name>central maven repo https</name> <url>https://repo.maven.apache.org/maven2</url> </repository> </repositories> </project>

    2.Add the repository into a profile in the settings.xml file.

    <profile> <id>my profile</id> <repositories> <repository> <id>central maven repo</id> <name>central maven repo https</name> <url>https://repo.maven.apache.org/maven2</url> </repository> </repositories> </profile> 3.Update you maven version to a new one that uses https values as default. The lastest one at this moment 3.6.3 Download here( https://maven.apache.org/download.cgi)

    google 资料的地址为 https://stackoverflow.com/questions/59763531/maven-dependencies-are-failing-with-a-501-error 大家也可以自行去看一下. 希望可以帮助到大家.

    1 条回复    2020-04-15 19:57:21 +08:00
    shuangyeying
        1
    shuangyeying  
       2020-04-15 19:57:21 +08:00
    感谢,之前配置还好好的,用到一个本地仓库没有的 jar 包,才发现这个问题。
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1649 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 27ms · UTC 16:49 · PVG 00:49 · LAX 09:49 · JFK 12:49
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.