返回介绍

PART Ⅰ : 容器云OPENSHIFT

PART Ⅱ:容器云 KUBERNETES

PART Ⅲ:持续集成与持续部署

PART Ⅴ:日志/监控/告警

PART Ⅵ:基础

PART Ⅶ:数据存储、处理

PART VIII:CODE

PART X:HACKINTOSH

PART XI:安全

Jenkins相关插件

发布于 2024-06-08 21:16:46 字数 5569 浏览 0 评论 0 收藏 0

现在Nexus各个格式仓库中的制品大多数都是在Jenkins的持续集成CI流水线中生成的,每次流水线构建都需要其制品上传到Nexus中进行管理。Nexus针对Jenkins有Nexus Platform的插件来简化上传步骤,该插件主要用来上传Maven格式制品到Hosted类型的仓库中。同时,Jenkins CI Pipeline中除了可以使用该插件来上传Maven制品到Maven格式仓库,原始Curl也是可以的。

插件Github:https://github.com/jenkinsci/nexus-platform-plugin

1、安装

2、配置

系统管理--> 系统设置--> Sonatype Nexus

3、Jenkins Job

4、Jenkins Pipeline

.....上文省略......
stage ('上传制品') {
  steps {
    script{
      //读取源代码中的POM文件,获取生成制品的maven坐标信息(Jenkins需要安装pipeline-utility-steps插件)
      def pomfile = readMavenPom file: 'pom.xml'
      //使用Nexus Platform插件上传maven制品到Nexus的maven格式release仓库
      nexusPublisher nexusInstanceId: 'curiouser-okd-nexus', \
                     nexusRepositoryId: 'Maven-Releases', \
                     packages: [[$class: 'MavenPackage', \
                                 mavenAssetList: [[classifier: '', extension: '', \
                                 filePath: "target/${pomfile.artifactId}-${pomfile.version}.${pomfile.packaging}"]], \
                                 mavenCoordinate: [artifactId: "${pomfile.artifactId}", \
                                                   groupId: "${pomfile.groupId}", \
                                                   packaging: "${pomfile.packaging}", \
                                                   version: "${pomfile.version}"]]]
      //拼接maven制品的搜索链接,该链接是以源代码POM文件中的maven制品坐标信息参数对nexus api进行搜索,返回的response会重定向到制品的下载链接
      echo "The Jar Format Asset of Maven have been pushed to Hosted Repository: Maven-Release. The Download URL of the Asset: http://Nexus-IP地址:8081/service/rest/v1/search../assets/download?maven.groupId=${pomfile.groupId}&maven.artifactId=${pomfile.artifactId}&maven.baseVersion=${pomfile.version}&maven.extension=jar&maven.classifier"
    }
  }
}
.....下文省略......
stage("上传制品"){
  steps{
    script{
      //读取源代码中的POM文件,获取生成制品的maven坐标信息(Jenkins需要安装pipeline-utility-steps插件)    
      def pomfile = readMavenPom file: 'pom.xml'
      //使用curl命令通过Nexus API接口上传制品到RAW仓库。下载URL既是上传URL
      sh "curl -sL -w 'Upload the jar to the repository status code: %{http_code}\n' -u admin:****** " +
         "--upload-file target/${pomfile.artifactId}-${pomfile.version}.${pomfile.packaging} " +
         "http://Nexus-IP地址:8081/repository/jenkins-product-repository/${pomfile.artifactId}-${pomfile.version}-${params.BUILD_VERSION}-${params.BUILD_ID}.${pomfile.packaging}"
    }
  }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文