Jenkins将工件部署到Artifactory。 maven-metadata.xml显示版本不正确,并且不显示快照版本

时间:2017-01-26 20:52:06

标签: maven jenkins artifactory

我是Jenkins和Artifactory的新手,我无法解决这个问题。我正在使用Jenkins 2.32.1,Artifactory 4.14.0,Jenkins Artifactory插件2.9.0和Maven 2.我正在使用Jenkins管道构建。

这是我的jenkinsfile

node('default') {
    try{
        def server = Artifactory.newServer url: 'https://artifactory.com/artifactory', credentialsId: 'MYCREADENTIALS'
        def rtMaven = Artifactory.newMavenBuild()


        stage('Checkout') {
            checkout myProject
        }

        stage('Artifactory configuration') {
            rtMaven.tool = 'Default'
            rtMaven.resolver server: server, releaseRepo: 'my-repo-all', snapshotRepo: 'my-repo-all'
            rtMaven.deployer server: server, releaseRepo: 'my-repo-local', snapshotRepo: 'my-repo-local'
        }

        stage('Clean') {
            rtMaven.run pom: 'pom.xml', goals: 'clean '
        }

        stage('Install') {
            def buildInfo = rtMaven.run pom: 'pom.xml', goals: 'install '
            server.publishBuildInfo buildInfo
        }

    } catch (err) {
        echo "Caught: $err"
        currentBuild.result = 'FAILURE'
    }
}

我的Artifactory仓库看起来像:

  • 我的回购本地
    • ....
    • 8(发布版本)
    • 11-20170126.182450-1(快照版本)
    • 行家-metadata.xml中

以下是我的pom.xml快照版本的片段:

<groupId>com.my.group</groupId>
<artifactId>my-project-local</artifactId>
<packaging>jar</packaging>
<version>11-SNAPSHOT</version>
<name>${project.artifactId}</name>
<description>my description</description>

以下是mavan-metadata.xml

<?xml version="1.0" encoding="UTF-8"?>
<metadata>
  <groupId>com.my.group</groupId>
  <artifactId>my-project-local</artifactId>
  <version>11-20170126.182450-1</version>
  <versioning>
    <latest>11-20170126.182450-1</latest>
    <release>11-20170126.182450-1</release>
    <versions>
      <version>4</version>
      <version>5</version>
      <version>6</version>
      <version>7</version>
      <version>8</version>
      <version>11-20170126.173903-1</version>
      <version>11-20170126.182450-1</version>
    </versions>
    <lastUpdated>20170126192233</lastUpdated>
  </versioning>
</metadata>

我的问题是maven-metadata.xml文件将快照版本列为其最新版本,而某些内容(Artifactory?)无法识别11-20170126.182450-1版本实际上是快照版本。

当此repo在我的其他项目的pom.xml中列为依赖项时,这会产生问题。当它试图从这个repo中获取最新版本时,它错误地尝试获取快照版本(11 -...)而不是发布版本(8)。

提前谢谢!我感谢任何有关此问题的建议或见解。

1 个答案:

答案 0 :(得分:0)

@Tunaki在我的问题评论中回答了我的问题。我在我的pom.xml中使用范围来引用我帖子中提到的存储库中的工件。我切换到使用确切的版本号,现在它正常工作。