Maven 无法从存储库获取快照构建

2022-09-01 12:10:00

我们的内部存储库(Artifactory)现在包含内部库的稳定版本和快照版本。

对于稳定版本,从未出现过从存储库下载任何内容的问题。

但是,当我添加 -SNAPSHOT 时,Maven 声称无法找到依赖项,即使它肯定在存储库中。

如果我在本地构建和部署依赖项(即到我的本地存储库中),则一切都可以正常工作。

基本上,这有效:

<dependency>
  <groupId>com.example</groupId>
  <artifactId>ourlibrary</artifactId>
  <version>1.0.0</version>
</dependency>

这不会:

<dependency>
  <groupId>com.example</groupId>
  <artifactId>ourlibrary</artifactId>
  <version>1.0.1-SNAPSHOT</version>
</dependency>

即使两个版本都是以相同的方式构建的,并且(据我所知)正确地部署到存储库中。

错误:

Missing:
----------

1) com.example:ourlibrary:jar:1.0.1-SNAPSHOT,

  Try downloading the file manually from the project website.

  Then, install it using the command:
      mvn install:install-file -DgroupId=com.example -DartifactId=ourlibrary -Dversion=1.0.1-SNAPSHOT, -Dpackaging=jar -Dfile=/path/to/file

  Alternatively, if you host your own repository you can deploy the file there:
      mvn deploy:deploy-file -DgroupId=com.example -DartifactId=ourlibrary -Dversion=1.0.1-SNAPSHOT, -Dpackaging=jar -Dfile=/path/to/file -Durl=[url] -DrepositoryId=[id]

  Path to dependency:
        1) com.example:product:war:2.0.0-SNAPSHOT
        2) com.example:ourlibrary:jar:1.0.1-SNAPSHOT,

虽然这听起来与这个问题相似,但那里达成的决议并不适用于我的案件。

如能就此问题提出任何见解,将不胜感激。

编辑

使用 -X 运行(如 John V. 所建议的那样)揭示了以下内容:

[DEBUG] Skipping disabled repository central
[DEBUG] ourlibrary: using locally installed snapshot
[DEBUG] Skipping disabled repository central
[DEBUG] Using mirror: http://repo.example.com/repo (id: repo.example.com)
[DEBUG] Artifact not found - using stub model: Unable to download the artifact from any repository

  com.example:ourlibrary:pom:1.0.1-SNAPSHOT

from the specified remote repositories:
  repo.example.com (http://repo.example.com/repo)


[DEBUG] Using defaults for missing POM com.example:ourlibrary:pom:1.0.1-SNAPSHOT:compile
[DEBUG]   com.example:ourlibrary:jar:1.0.1-SNAPSHOT:compile (selected for compile)

答案 1

我想到了两个想法:

  1. 工件的内部存储库中的路径结构不正确。我建议使用 -X 参数运行 maven 命令。它将显示专家下载文件的尝试。获取以您的存储库作为URL的行,并尝试自己查找它。

    路径应如下所示

    /com/example/ourlibrary/1.0.1/ourlibrary-1.0.1-SNAPSHOT.jar

  2. 您没有将存储库作为存储库包含在 pom 中.xml

答案 2

通常,您有一个与发布 url 分开的快照 url。只是同一存储库中的不同路径,但在 pom 中列为单独的存储库。用于快照的快照需要启用快照,而用于发布的快照需要禁用快照:

<repositories>
        <repository>
            <id>central</id>
            <url>
                http://<releases-url>
            </url>
            **<snapshots>
                <enabled>false</enabled>
            </snapshots>**
        </repository>

        <repository>
            <id>snapshots</id>
            <url>
                http://<snapshots-url>
            </url>
            <snapshots>
                **<enabled>true</enabled>**
                <!-- never, daily, interval:X (where X is in minutes) or always -->
                <!--<updatePolicy>daily</updatePolicy> -->
            </snapshots>
            <releases>
                <enabled>false</enabled>
            </releases>
        </repository>
    </repositories>

推荐