Maven 无法使用 Central repo 解决依赖关系

Posted

技术标签:

【中文标题】Maven 无法使用 Central repo 解决依赖关系【英文标题】:Maven can't resolve dependency with Central repo 【发布时间】:2019-04-13 03:58:57 【问题描述】:

我正在尝试使用以下依赖项构建项目

<repositories>
    <repository>
        <id>central</id>
        <name>Maven Repository Switchboard</name>
        <layout>default</layout>
        <url>http://central.maven.org/maven2/</url>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>org.apereo.cas</groupId>
        <artifactId>cas-server-webapp-config-server</artifactId>
        <version>5.3.5</version>
    </dependency>
</dependencies>

我看到以下错误:

[INFO] ------------------------------------------------------------------------
[INFO] Building sso 1.0-SNAPSHOT
[INFO] ------------------------------------------------------------------------
[INFO] ------------------------------------------------------------------------
[INFO] BUILD FAILURE
[INFO] ------------------------------------------------------------------------
[INFO] Total time: 0.926s
[INFO] Finished at: Fri Nov 09 18:46:12 SAMT 2018
[INFO] Final Memory: 17M/309M
[INFO] ------------------------------------------------------------------------
[ERROR] Failed to execute goal on project sso: Could not resolve dependencies for project mrb:sso:war:1.0-SNAPSHOT: Failure to find org.apereo.cas:cas-server-webapp-config-server:jar:5.3.5 in http://central.maven.org/maven2/ was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]

但是!我们可以看到,Central 和 Sonatype 存储库都具有这种依赖关系 https://mvnrepository.com/artifact/org.apereo.cas/cas-server-webapp-config-server/5.3.5

有人知道哪里出了问题吗?

【问题讨论】:

找到 .m2 文件夹并删除现有下载的 jar,应该可以正常工作。 尝试添加https://repo1.maven.org/maven2/ 【参考方案1】:

依赖项不是 jar。

指定正确的类型或分类器。

【讨论】:

没错。谢谢!

以上是关于Maven 无法使用 Central repo 解决依赖关系的主要内容,如果未能解决你的问题,请参考以下文章

maven repo子目录

Unable to update index for central

maven镜像配置

maven常用仓库url

对http://repo1.maven.org/maven2/的请求返回501 HTTPS必需的状态和主体

国内maven 仓库