6

我有一个 Maven 3 项目的 Jenkins 构建工作。该项目具有 SNAPSHOT 依赖项。构建失败,因为 Maven 找不到部署到 Intranet Sonatype Nexus Repository 的 SNAPSHOT 工件。SNAPSHOT 存储库是“公共”组的一部分,它是<mirrorOf>*</mirrorOf>.
Jenkins 配置为在工作区本地创建一个本地 Maven 存储库(每个作业一个存储库)。
所有其他非快照依赖项都已解决并很好地下载。没有 SNAPSHOT 依赖项的项目的其他作业也已成功构建。到目前为止我尝试过的事情(没有成功):

  • Nexus 中的过期缓存
  • 检查本地存储库(在作业目录中) - 没有工件目录
  • 在作业配置中将“构建 -> 目标和选项”设置为“-U 全新安装”
  • 等一小时

我的设置:
Windows Server 2003
Java 1.6.0_31
Jenkins 1.480
Maven 3.0.3

4

2 回答 2

3

这可能是我也发现的“陷阱”,从 Nexus 下载快照修订。

Nexus book中提供了解决方案,但没有完全解释:

<settings>
  <mirrors>
    <mirror>
      <id>nexus</id>
      <url>http://myserver/nexus/content/groups/public</url>
      <mirrorOf>central</mirrorOf>
    </mirror>
  </mirrors>
  <profiles>
    <profile>
      <id>nexus</id>
      <!--Enable snapshots for the built in central repo to direct -->
      <!--all requests to nexus via the mirror -->
      <repositories>
        <repository>
          <id>central</id>
          <url>http://central</url>
          <releases><enabled>true</enabled></releases>
          <snapshots><enabled>true</enabled></snapshots>
        </repository>
      </repositories>
    </profile>
  </profiles>
  <activeProfiles>
    <!--make the profile active all the time -->
    <activeProfile>nexus</activeProfile>
  </activeProfiles>
</settings>

似乎必须明确告诉 Maven Nexus 提供的存储库组也可以包含快照修订。据推测,这会触发 Maven 开始寻找特殊的元数据文件,这些元数据文件用于发现哪个时间戳文件实际上是最新的快照。

于 2012-09-06T18:36:54.490 回答
1

既然您已经定义了mirrorOf/*,只需在您的中添加它.m2/settings.xml以指示 maven 也搜索该镜像以获取快照:

<profile><id>alwaysactive</id>
    <activation><activeByDefault>true</activeByDefault></activation>
    <repositories>
        <repository><id>unused</id><url>unused</url></repository>
    </repositories>
</profile>
于 2015-05-20T08:34:33.877 回答