码迷,mamicode.com
首页 > 其他好文 > 详细

jfrog artifactory jenkins pipeline 集成

时间:2017-11-09 15:44:23      阅读:272      评论:0      收藏:0      [点我收藏+]

标签:jenkins   mode   rtm   factory   wiki   oca   maven   server   资料   

1. 预备环境
artifactory ( 开源版本 )
maven  
jenkins 
jenkins artifactory plugin (在插件管理安装即可)
2. 配置artifactory 
 
a. maven local 仓库
技术分享
 
技术分享
技术分享
 
b. jenkins 配置(添加 artifactory 账户信息)
 
技术分享
 
3.  jenkins  pipeline 配置(实例使用github 实例)
 
   jenkinsfile 内容如下:
node("docker-64") {
    def server = Artifactory.newServer url: "http://xxxxxx:8081/artifactory", credentialsId: ‘jfrog-artifactory‘
    def rtMaven = Artifactory.newMavenBuild()
    def buildInfo

    stage (‘Clone‘) {
        git url: ‘https://github.com/jfrogdev/project-examples.git‘
    }

    stage (‘Artifactory configuration‘) {
        rtMaven.tool = ‘64maven‘ // Tool name from Jenkins configuration
        rtMaven.deployer releaseRepo: ‘aliyun‘, snapshotRepo: ‘aliyun‘, server: server
        buildInfo = Artifactory.newBuildInfo()
    }

    stage (‘Exec Maven‘) {
        rtMaven.run pom: ‘maven-example/pom.xml‘, goals: ‘clean install‘, buildInfo: buildInfo
    }

    stage (‘Publish build info‘) {
        server.publishBuildInfo buildInfo
    }
}
4. jenkins 构建效果
技术分享
 
 
5. artifactory 效果
技术分享
 
技术分享
 
技术分享
 
技术分享
 
 
6. 总结
总的来说还是比较好用的,结合jenkins pipeline 可能方便的进行信息的查看,同时jfrog artifactory 的功能也是比较强大的,可以方便我们进行历史构建信息的查询
7. 参考资料
https://wiki.jenkins.io/display/JENKINS/Artifactory+Plugin
http://www.jfrogchina.com/open-source

jfrog artifactory jenkins pipeline 集成

标签:jenkins   mode   rtm   factory   wiki   oca   maven   server   资料   

原文地址:http://www.cnblogs.com/rongfengliang/p/7809612.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!