gpt4 book ai didi

Maven 找不到本地 repo Artifact

转载 作者:行者123 更新时间:2023-12-05 06:40:30 27 4
gpt4 key购买 nike

我得到这个:

Failed to execute goal on project boot: Could not resolve dependencies for project xxx:boot:jar:1.0.0-SNAPSHOT: Could not find artifact xxx:xxx:jar:1.0.0-SNAPSHOT in central (http://xxx/artifactory/all/) -> [Help 1]

该人工制品仅在我的本地存储库中。 (是的,我可以在那里看到)Maven 没有接听。

我看到很多关于 SO 的想法,但没有一个有效。

我已经尝试了所有关于 SO 的建议:

find ~/.m2/repository -name _maven.repositories -exec rm -v {} \;

find ~/.m2/repository -name _remote.repositories -exec rm -v {} \;

我删除了 repo 并重新构建(即 mvn install)所有需要的依赖项。

我加了

<snapshots>
<enabled>true</enabled>
<updatePolicy>never</updatePolicy>
</snapshots>

到 POM

我试过 mvn -o install

我不确定接下来要尝试什么!我在 Ubuntu 16.04 上使用 mvn 3.3.9

最佳答案

根据您的信息,我会说您可能必须运行完整的命令(尤其是对于 Maven 2.5 版本之前构建的 jar),它应该是(替换为方便的):mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> \
-DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>

参见:https://maven.apache.org/guides/mini/guide-3rd-party-jars-local.html

关于Maven 找不到本地 repo Artifact ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42520595/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com