詹金斯为什么不下载我的最新快照?

时间:2012-09-06 14:34:39

标签: java maven jenkins

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

  • Nexus中的过期缓存
  • 检查了本地存储库(在作业目录中) - 没有工件目录
  • 在作业配置中将“Build - &gt;目标和选项”设置为“-U clean install”
  • 等一个小时

我的设置:
Windows Server 2003
Java 1.6.0_31
詹金斯1.480
Maven 3.0.3

2 个答案:

答案 0 :(得分: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提供的存储库组也可以包含Snapshot修订版。据推测,这样做会触发Maven开始寻找用于发现哪个带时间戳的文件实际上是最新快照的特殊元数据文件。

答案 1 :(得分: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>