Using the latest version?
JFrog Platform User Guide


Skip to end of metadata
Go to start of metadata

Overview

The popular Jenkins Artifactory Plugin bringsArtifactory's Build Integrationsupport to Jenkins.

This integration allows your build jobs to deploy artifacts and resolve dependencies to and from Artifactory, and then have them linked to the build job that created them. The plugin includes a vast collection of features, including arichpipeline API libraryandrelease management for Maven and Gradle buildswith Staging and Promotion.

The Jenkins Artifactory Plugin supports the following Jenkins Build Jobs:

Get startedwithconfiguring the Jenkins Artifactory Plug-in.

Multi-Configuration (Freestyle) Projects

Amulti-configuration projectcan be used to avoid duplicating many similar steps that would otherwise be made by different builds.

使用的插件一样另Freestyle builds, but under "Deploy artifacts to Artifactory" you will find a mandatory *Combination Matches *field where you can enter the specific matrix combinations to which the plugin will deploy the artifacts.

Combination Matches field

Here you can specify build combinations that you want todeploythrough a Groovy expression that returns true or false.
When you specify a Groovy expression here, only the build combinations that result intruewill be deployed to Artifactory. In evaluating the expression, multi-configuration axes are exposed as variables (with their values set to the current combination evaluated).
The Groovy expression uses the same syntax used inCombination FilterunderConfiguration Matrix
For example, if you are building on different agents for different jdk`s you would specify the following:

Deploy "if both linux and jdk7, it's invalid "

!(label=="linux" && jdk=="jdk7"

Deploy "if on master, just do jdk7 "

(label=="master").implies(jdk=="jdk7")

Important Note

Deployment of the same Maven artifacts by more than one matrix job is not supported!


Triggering Builds

TheArtifactory Triggerallows a Jenkins job to be automatically triggered when files are added or modified in a specific Artifactory path. The trigger periodically polls Artifactory to check if the job should be triggered.

To enable the Artifactory trigger, follow these steps:
1. In the Jenkins job UI, go toBuild Triggers, and check theEnable Artifactory triggercheckbox.
2. Select anArtifactory server.
3. Define a cron expression in theSchedulefield. For example, to pull Artifactory every ten minutes, set*/10 * * * *
4. Set aPath to watch. For example, when settinggeneric-libs-local/builds/starship, Jenkins polls the/builds/starshipfolder under thegeneric-libs-localrepository in Artifactory for new or modified files.

JIRA Integration

JIRA Integration is supported only in Free-Style and Maven jobs.

Pipeline jobs support a more generic integration, which allows integrating with any issue tracking system. See theCollecting Build Issuessection inDeclarativeandScriptedPipeline APIs documentation pages.


The Jenkins plugin may be used in conjunction with theJenkins JIRA pluginto record the build's affected issues, and include those issues in the Build Info descriptor inside Artifactory and as searchable properties on deployed artifacts.

The SCM commit messages must include the JIRA issue ID. For example:哈P-007 - Shaken, not stirred

To activate the JIRA integration, make sure that Jenkins is set with a valid JIRA site configuration and select theEnable JIRA Integrationin the job configuration page:

Aggregating Issues from Previous Builds

It is possible to collect under a build deployed to Artifactory all JIRA issues affected by this build as well as previous builds. This allows you, for example, to see all issues between the previous release to the current build, and if the build is a new release build - to see all issues addresses in the new release.
To accumulate JIRA issues across builds, check the "Aggregate issues from previous builds" option and configure the last build status the aggregation should begin from. The default last status is "Released" (case insensitive), which means aggregation will begin from the first build after the last "Released" one.


Build Isolation

Build Isolation is currently supported only in Free-Style and Maven jobs.


When executing the same chain of integration (snapshot) builds in parallel, a situation may arise in which downstream builds resolve snapshot dependencies which are not the original dependencies existing when the build was triggered.
This can happen when a root upstream build has run and triggered downstream builds that depend on its produced artifacts. Then the upstream has run again before the running downstream builds has finished, so these builds may resolve newly created upstream artifacts that are not meant for them, leading to conflicts.

Solution

The Jenkins plugin offers a new checkbox for its Maven/Gradle builds 'Enable isolated resolution for downstream builds' which plants a new 'build.root' property that is added to the resolution URL.
This property will then be read by thedirectchildren of this build and implanting them in their resolution URLs respectively, thus guaranteeing that the parent artifact resolved is the one that was built prior to the build being run.

Maven

In order for Maven to use the above feature, the checkbox needs to be checked for the root build only, and make sure that all artifacts are being resolved from Artifactory by using the 'Resolve artifacts from Artifactory' feature. This will enforce Maven to use the resolution URL with Maven builds, alongside with the 'build.root' property as a matrix param in the resolution URL.

Gradle

Once the 'Enable isolated resolution for downstream builds' has been checked, the build.root property will be added to all existing resolvers.


Excluded artifacts and the BuildInfo

By default when providing exclude patterns for artifacts, they will not get deployed into Artifactory but they will get included in the final BuildInfo JSON.
By marking the "Filter excluded artifacts from build Info" the excluded artifacts will appear in a different section inside the BuildInfo and by this providing a clear understanding of the entire Build.
This is also crucial for the promotion procedure, since it scans your BuildInfo JSON and trying to promote all the artifacts there, it will fail when you excluded artifacts unless you mark this option.


Discarding Old Builds

To use this functionality in pipeline jobs, please refer to one of theTriggering Build Retentionsections in theArtifactory Pipeline APIs documentation page.


The Jenkins project configuration lets you specify a policy for handling old builds.

You can delete old builds based on age or number as follows:

Days to keep builds

The number of days that a build should be kept before it is deleted

Max # of builds to keep

The maximum number of builds that should be kept. When a new build is created, the oldest one will be deleted

Once these parameters are defined, in thePost-build Actionssection, you can specify that Artifactory should also discard old builds according to these settings as follows:

Discard old builds from Artifactory

Configures Artifactory to discard old builds according to the Jenkins project settings above

Discard build artifacts

Configures Artifactory to also discard the artifacts within the build


Configuring repositories with variables

This section is relevant for Free-Style and Maven jobs only,.

You can select text mode in which you can type out your target repository.
In your target repository name, you can use variables that will be dynamically replaced with a value at build time.
The variables should be specified with a dollar-sign prefix and be enclosed by curly brackets.
For example: ${deployRepository}, ${resolveSnapshotRepository}, ${repoPrefix}-${repoName} etc.
The variables are replaced by values from one of the following job environments:

  1. Predefined Jenkins environment variables.
  2. Jenkins properties (Read more inJenkins Wiki)
  3. Parameters configured in the Jenkins configuration under the "This build is parameterized" section - these parameters could be replaced by a value from the UI or using the Jenkins REST API.
  4. Injected variables via one of the Jenkins plugins ("EnvInject" for example).

Dynamically Disabling Deployment of Artifacts and Build-info

Maven, Gradle and Ivy builds can be configured to deploy artifacts and/or build information to Artifactory. For example, in the case of Gradle builds, you would set thePublishing repositoryfield and checkCapture and publish build-info.Maven and Ivy have similar (although slightly different) configuration parameters. By setting these parameters, you can configure each build tool respectively to deploy build artifacts and/or build information to Artifactory. However, there may be specific cases in which you want to override this setting and disable deploying artifacts and build information. In these cases, you can pass the following two system properties to any of the build tools:

  • artifactory.publish.artifacts
  • artifactory.publish.buildInfo
    For example, for a Maven build, you can add these system properties to theGoals and optionsfield as follows:


clean install -Dartifactory.publish.artifacts=false -Dartifactory.publish.buildInfo=false


To control these properties dynamically, you can replace the values with Jenkins variables or Environment variables that you define as follows

clean install -Dartifactory.publish.artifacts=$PUBLISH_ARTIFACTS -Dartifactory.publish.buildInfo=$PUBLISH_BUILDINFO

Using the Jenkins Job DSL Plugin

The Jenkins Job DSL plugin allows the programmatic creation of jobs using a DSL. Using the Jenkins Job DSL plugin, you can create Jenkins jobs to run Artifactory operations. To learn about the Jenkins Job DSL, see theJob DSL Turotial.

To view Seed job examples and instructions for each type of Jenkins jobs, seejenkins-job-dsl-examples.


Watch the Screencast

To see the Jenkins Artifactory Integration in action you can watch the following screencast.


Release Notes

3.5.0 (30 Dec 2019)
  1. New Go pipeline APIs (哈P-1272)
  2. Support access token auth with Artifactory (哈P-1271)
  3. File Specs - support for sorting. (哈P-1215)
  4. Gradlepipeline - support defining snapshot and release repositories. (哈P-1174)
  5. Replace the usage of gradle's maven plugin with the maven-publish plugin. (哈P-1096)
  6. NPM pipeline - allow running inside a container. (哈P-1261)
  7. New Xray Scan Report icon added next to build run, in case Xray build scan failed. (哈P-1274)
  8. Bug fixes (哈P-1265,哈P-1264,哈P-1250,哈P-1240,哈P-1243,哈P-954,哈P-1268)
3.4.1 (23 Sep 2019)
  1. Bug fixes (哈P-1235,哈P-1236,哈P-1238)
3.4.0 (5 Sep 2019)
  1. Allow adding projects issues to the build-info in pipeline jobs (哈P-1231)
  2. Attach vcs.url and vcs.revision to files uploaded from a pipeline job (hap - 1233)
  3. Conan remote.add pipeline API - support "force" and "remoteName" (hap - 1232)
  4. Bug fixes (哈P-1230,哈P-1229,哈P-1225,哈P-1224,哈P-1219,哈P-1218,哈P-1214,哈P-1210,哈P-1209,哈P-1190)
3.3.2 (2 July 2019)
  1. Change Xray connection timeout to 300 seconds (哈P-1213)
  2. Add *psw*to the exclude environment variables list of pipeline jobs only. (哈P-1212)
  3. Bug fixes (哈P-1204,哈P-1205)
3.3.0 (17 June 2019)
  1. Declarative pipeline API for Xray build scan (哈P-1175)
  2. Declarative pipeline API for docker push (哈P-1201)
  3. Bug fix (哈P-1200)
3.2.4 (5 June 2019)
  1. Bug fixes (哈P-1195,哈P-1167,哈P-1197)
3.2.3 (4 June 2019)
  1. Bug fixes & Improvements (哈P-1191,哈P-1183,哈P-1182,哈P-1176,哈P-1172)
3.2.2 (31 Mar 2019)
  1. Bug fixes & Improvements (哈P-1150,哈P-1151,哈P-1157,哈P-1158,哈P-1160,哈P-1164,哈P-1168,哈P-1169)
3.2.1 (20 Feb 2019)
  1. Bug fix (哈P-1156)
3.2.0 (18 Feb 2019)
  1. New Set/Delete Properties step in generic pipeline (哈P-1153)
  2. Add an option to get a list of all downloaded artifacts (哈P-1114)
3.1.2 (11 Feb 2019)
  1. Bug fix (哈P-1146)
3.1.1 (10 Feb 2019)
  1. Add the ability to control the number of parallel uploads using File Specs (哈P-1085)
  2. Bug fixes & Improvements (哈P-1116,哈P-1136,哈P-1137,哈P-1140,哈P-1143,哈P-1144,哈P-1145)
3.1.0 (16 Jan 2019)
  1. Support for NodeJS plugin in npm builds (哈P-1127)
  2. Support for Declarative syntax in npm builds (哈P-1128)
  3. Bug fixes & Improvements (哈P-1130,哈P-1132,哈P-1133,哈P-1134)
3.0.0 (31 Dec 2018)
  1. Upgrade to Java 8 - Maven, Gradle and Ivy builds no longer support JDK 7
  2. Support for Declarative syntax in Generic Maven and Gradle builds (哈P-1093)
  3. Support for npm in scripted pipeline (哈P-1044)
  4. Support for Artifactory trigger (哈P-1012)
  5. New Fail No Op flag in generic pipeline (哈P-1123)
  6. Breaking changes: Removal of deprecated features (哈P-1119)
  7. Bug fixes & Improvements (哈P-1120,哈P-1121,哈P-1122,哈P-1113,哈P-1112,哈P-1110,哈P-1102,哈P 1098,哈P-1090,哈P-1124)
2.16.2 (9 Jul 2018)
  1. Docker build-info performance improvement (哈P-1075)
  2. Bug fixes (哈P-1057,哈P-1076,哈P-1083,哈P-1086,哈P-1087)
2.16.1 (3 May 2018)
  1. Support "proxyless" configuration for docker build-info (哈P-1061)
  2. Bug fixes (哈P-1043,哈P-1068,哈P-1070)
2.16.0 (1 May 2018)
  1. File Specs - Deployment of Artifacts is now parallel (哈P-1066)
  2. Conan build with Docker improvement (哈P-1055)
  3. Bug fixes & improvements (哈P-1000,哈P-1049,哈P-1058,哈P-1062,哈P-1065)
4月2018 2.15.1 (1)
  1. Bug fixes (哈P-1046,哈P-1047,哈P-1048,哈P-1051,哈P-1052)
2.15.0 (14 Mar 2018)
  1. Support JenkinsJEP-200changes(哈P-1032)
  2. File Specs - File larger than 5mb are now downloaded concurrently(哈P-1041)
  3. Add support for Jenkins job-DSL(哈P-1028)
  4. 验证git凭证在Artifactory法则ase Staging(哈P-1027)
  5. Bug fixes & improvements(哈P-1042,哈P-1039,哈P-1031,哈P-1030,哈P-1029,哈P-1026,哈P-1025,哈P-1024,哈P-1021,哈P-1019,哈P-999,哈P-970)
2.14.0 (28 Dec 2017)
  1. Docker build info without the Build Info Proxy(哈P-1016)
  2. Bug fixes (哈P-1001,哈P-1003,哈P-1007,哈P-1008,哈P-1009,哈P-1010,哈P-1013)
2.13.1 (26 Oct 2017)
  1. Bug fixes (哈P-1002,哈P-1004,哈P-1006)
2.13.0 (27 Sep 2017)
  1. Support JFrog DSL from within Docker containers(哈P-937)
  2. Release Staging API - Send release and queue metadata back as JSON in the response body(哈P-971)
  3. Allow adding properties in a pipeline docker push(哈P-974,哈P-977)
  4. Support pattern exclusion in File Specs(哈P-985)
  5. File specs AQL optimizations(哈P-990)
  6. Bug fixes (哈P-961,哈P-962,哈P-964,哈P-969,哈P-972,哈P-978,哈P-980,哈P-981,哈P-983,哈P-988,哈P-991)
2.12.2 (27 Jul 2017)
  1. Bug fixes (哈P-944,哈P-945,哈P-946,哈P-951,哈P-952,哈P-953,哈P-958,哈P-959,哈P-961)
2.12.1 (11 Jul 2017)
  1. Bug fixes (hap - 949,哈P-950)
2.12.0 (29 Jun 2017)
  1. Pipepine - Allow separation of build and deployment for maven and gradle (哈P-919)
  2. Git commit information as part of Build Info (哈P-920)
  3. Support asynchronous build retention (哈P-934)
  4. Support archive extraction using file specs (哈P-942)
  5. Bug fixes (哈P-933,哈P-929,哈P-912,hap - 941,哈P-940,哈P-935,哈P-938)
2.11.0 (17 May 2017)
  1. Support distribution as part of the Pipeline DSL (哈P-908)
  2. Compatibility with JIRA Plugin 2.3 (哈P-928)
  3. Bug fixes (哈P-915,哈P-917,哈P-927)
2.10.4 (27 Apr 2017)
  1. Bug fixes (哈P-900,哈P-909,哈P-913,哈P-918)
2.10.3 (5 Apr 2017)
  1. Support interactive promotion in Pipeline jobs (哈P-891)
  2. Conancommands support for Pipeline jobs (哈P-899)
  3. Improve build-info links for multi build Pipeline jobs (哈P-901)
  4. Bug fixes (哈P-556,哈P-855,哈P-887,哈P-897)
2.9.2(3月5日2017)
  1. Bug fixes (哈P-892,哈P-889)
2.9.1 (1 Feb 2017)
  1. Bug fixes (哈P-877,哈P-883,哈P-884,哈P-879)
2.9.0 (7 Jan 2017)
  1. Add to file spec the ability to download artifact by build name and number (哈P-865)
  2. Support Release Management as part of the Pipeline DSL (hap - 797)
  3. Capture docker build-info from all agents proxies (哈P-868)
  4. Support for Xray scan build feature (哈P-866)
  5. Support customised build name (哈P-869)
  6. Change file Specs pattern (哈P-876)
  7. Bug fixes (哈P-872,哈P-873,哈P-870,哈P-856,哈P-862)
2.8.2 (6 Dec 2016)
  1. Support promotion fail fast (哈P-803)
  2. Enable setting the JDK for Maven/Gradle Pipeline API (哈P-848)
  3. Support environment variables within Pipeline specs (哈P-849)
  4. Improve release staging with git (哈P-842)
  5. Bug fixes (哈P-854,哈P-852,哈P-846,哈P-843,哈P-791,哈P-716,哈P-488)
2.8.1 (10 Nov 2016)
  1. Bug fix (哈P-841)
2.8.0 (9 Nov 2016)
  1. Upload and download specs support to Jenkins generic jobs (哈P-823)
  2. Pipeline docker enhancements (哈P-834)
  3. Support matrix params as part of the Maven and Gradle Pipeline DSL (哈P-835)
  4. Support credentials iD as part of the Docker Pipeline DSL (哈P-838)
  5. Support reading download and upload specs from FS (哈P-838)
  6. Bug fix (哈P-836,哈P-830,哈P-829,哈P-822,哈P-824,哈P-816,哈P-828,哈P-826)
2.7.2 (25 Sep 2016)
  1. Build-info support for docker images within pipeline jobs (哈P-818)
  2. Support for Maven builds within pipeline jobs (哈P-759)
  3. Support for Gradle builds within pipeline jobs (哈P-760)
  4. Support for Credentials plugin (哈P-810)
  5. Bug fix (哈P-723,哈P-802,哈P-804,哈P-815,哈P-816)
2.6.0 (7 Aug 2016)
  1. Pipeline support for build retention (discard old builds)(HAP-796)
  2. Pipeline support for build promotion, environment variables and system properties filtered collection (哈P-787)
  3. Expose release version and next development release property as environment variable (哈P-798)
  4. Bug fix (哈P-772,哈P-762,哈P-795,哈P-796,哈P-799)
2.5.1 (30 Jun 2016)
  1. Bug fix (哈P-771)
2.5.0 (9 Jun 2016)
  1. Pipeline support for Artifactory (哈P-625,哈P-722)
  2. Support for credentials using inside a Folder with the Credentials Plugin (哈P-742)
  3. Configure from the job a default release repository from configuration page (哈P-688)
  4. Allowing override Git credentials at artifactory release staging page (哈P-626)
  5. Bug fix (哈P-754,哈P-752,哈P-747,哈P-736,哈P-726,哈P-722,哈P-715,哈P-712,哈P-704,哈P-695,哈P-688,哈P-671,哈P-642,哈P-639)
2.4.7 (12 Jan 2016)
  1. Bug fix (哈P-678)
2.4.6 (13 Dec 2015)
  1. Bug fix (哈P-674)
2.4.5 (6 Dec 2015)
  1. Bug fixes (哈P-665,哈P-668)
2.4.4 (17 Nov 2015)
  1. Bug fixes (哈P-661,哈P-663,哈P-664)
2.4.1 (6 Nov 2015)
  1. Bug fix (哈P-660)
2.4.0 (2 Nov 2015)
  1. Use the Credentials Plugin;(哈P-491)
  2. FreeStyle Jobs - Support different Artifactory server for resolution and deployment;(哈P-616)
  3. Jenkins should write the Artifactory Plugin version to the build log and build-info json;(哈P-620)
  4. Bug fixes (哈P-396,哈P-534,哈P-583,哈P-616,哈P-617,哈P-618,哈P-621,哈P-622,哈P-641,哈P-646)
2.3.1 (13 Jul 2015)
  1. Expose Release SCM Branch and Release SCM Tag as build variables;(哈P-606)
  2. Bug fixes (哈P-397,哈P-550,哈P-576,哈P-593,哈P-603,哈P-604,哈P-605,哈P-609)
2.3.0 (01 Apr 2015)
  1. Push build to Bintray directly from Jenkins UI (哈P-566)
  2. Multijob (plugin job) type not supported by Artifactory Plugin (哈P-527)
  3. Support multi-configuration projects (哈P-409)
  4. "Target-Repository" - need a dynamic parameter (哈P-547)
  5. Bug fixes (哈P-585,哈P-573,哈P-574,哈P-554,哈P-567)
2.2.7 (27 Jan 2015)
  1. Add resolve artifacts from Artifactory to the Free Style Maven 3 integration (哈P-379)
  2. Bug fixes (哈P-411,哈P-553,hap - 555)
2.2.5 (18 Dec 2014)
  1. Maven jobs - Record Implicit Project Dependencies and Build-Time Dependencies (哈P-539)
  2. Possibility to refer to git url when using target remote for Release management (哈P-525)
  3. Bug fixes (哈P-537,哈P-542,哈P-535,哈P-528,哈P-516,哈P-507,哈P-484,哈P-454,哈P-538,哈P-523,哈P-548)
2.2.4 (21 Aug 2014)
  1. New Artifactory Release Management API (哈P-503)
  2. Compatibility with Gradle 2.0 (GAP-153)
  3. Job configuration page performance improvements (哈P-492)
  4. Bug fixes (哈P-485,哈P-499),哈P-502,哈P-508,哈P-509,哈P-301)
2.2.3 (10 Jun 2014)
  1. Artifactory plugin is back to support Maven 2 (哈P-459)
  2. New feature, "Refresh Repositories" button, a convenient way to see your available repositories that exists in the configured Artifatory.
    This feature also improves the Job page load response, and fixes the following bug (哈P-483)
  3. Supporting "Subversion plugin" version 2.+, on their compatibility with "Credentials plugin" (哈P-486)
  4. Bug fixes (哈P-489,哈P-480)
2.2.2 (21 May 2014)
  1. Split Resolution repository to Snapshot and Release (哈P-442)
  2. Supporting Git plugin credentials (哈P-479)
  3. Upgrading and also minimum supporting version of Git plugin 2.0.1 (recommended 2.0.4 for the credentials feature)
  4. Fix bug with Maven release plugin (哈P-373)
  5. Adding Version Control Url property to the Artifactory Build Info JSON (哈P-478)
  6. Bug fixes (哈P-432,哈P-470)
2.2.1 (11 Nov 2013)
  1. Fix for IllegalArgumentException in Deployment when no deployment is defined in Job (哈P-241)
2.2.0 (16 Oct 2013)
  1. Fix parent pom resolution issue (哈P-236) from Jenkins 1.521
  2. Add support for maven 3.1.X
  3. Option to ignore artifacts that are not deploy because of include/exclude patterns from the build info (哈P-444)
  4. Enable credentials configuration for repository listing per project (哈P-430)
  5. Bug fixes
2.1.8 (26 Aug 2013)
  1. Fix migration to Jenkins 1.528 (哈P-428)
2.1.7 (31 Jul 2013)
  1. Maven build failure during deployment (哈P-420)
  2. Bug fixes (哈P-406)
2.1.6 (24 Jun 2013)
  1. Fix plugin compatibility with Jenkins 1.519 (哈P-418)
2.1.5 (23 Apr 2013)
  1. Black duck integration - Automatic Black duck Code-Center integration for open source license governance and vulnerability control (哈P-394)
  2. Gradle1.5 support for maven and ivy publishes - New 'artifactory-publish' plugin with fully supported for Ivy and Maven publications (GAP-138)
  3. Bug fixes (哈P-341,哈P-390,哈P-366,哈P-380)
2.1.4 (03 Feb 2013)
  1. Generic resolution interpolates environment variables (哈P-352)
  2. Broken link issues (哈P-362,哈P-371,哈P-360)
  3. Minor bug fixes
2.1.3 (14 Oct 2012)
  1. Support include/exclude patterns of captured environment variables (BI-143)
  2. Bug fixes (哈P-343,哈P-4,GAP-136)
2.1.2 (08 Aug 2012)
  1. Aggregating Jira issues from previous builds (哈P-305)
  2. Bug fixes and improvements in generic deploy (哈P-319,哈P-329)
2.1.1 (31 May 2012)
  1. NPE on Maven2 builds (哈P-316)
2.1.0 (24 May 2012)
  1. Support for cloudbees 'Folder plugin' (哈P-312,hap - 313)
  2. Minor bug fixes
2.0.9 (15 May 2012)
  1. Fix UI integration for Jenkins 1.463+ (哈P-307)
  2. Minor bug fixes
2.0.8 (09 May 2012)
  1. Integration with Jira plugin(哈P-297)
  2. Support build promotion for all build types (哈P-264)
  3. Ability to leverage custom user plugins forstaging and promotion(哈P-271,哈P-272)
2.0.7 (20 Apr 2012)
  1. Generic artifact resolution (based on patterns or other builds output) to freestyle builds (哈P-292)
  2. Optimized deploy - when a binary with the same checksum as an uploaded artifact already exists in the Artifactory storage, a new local reference will be created instead of reuploading the same content
  3. Bug fixes
2.0.6 (19 Mar 2012)
  1. Support Perforce in release management (哈P-265)
  2. Generic artifacts deployment (哈P-153)
  3. Bug fixes
2.0.5(2011年12月8日电)
  1. Compatible with Gradle 1.0-milestone-6
  2. Different Artifactory servers can be used for resolution and deployment (哈P-203)
  3. Using the new Jenkins user cause class to retrieve triggering user.Requires Jenkins 1.428 or above(哈P-254)
  4. Release management with Git work with the latest plugin. Requires Git plugin v1.1.13 or above (哈P-259,JENKINS-12025)
  5. Build-info exports an environment variable'BUILDINFO_PROPFILE'with the location of the generated build info properties file
2.0.4 (15 Aug 2011)
  1. Compatible with Jenkins 1.424+ (哈P-223)
  2. Resolved Maven 3 deployments intermittently failing on remote nodes (哈P-220)
  3. Target repository for staged builds is now respected for Maven 3 builds (哈P-219)
  4. Remote builds no longer fail when "always check out a fresh copy" is used (哈P-224)
2.0.3 (26 Jul 2011)
  1. Support for Git Plugin v1.1.10+ (哈P-217)
  2. Native maven 3 jobs doesn't work if the Jenkins home path contains spaces (哈P-218)
  3. Wrong tag URL is used when changing scm element during staged build (哈P-215)
2.0.2 (07 Jul 2011)
  1. Support Jenkins version 1.417+ (哈P-211)
2.0.1 (19 May 2011)
  1. 从远程奴隶——工件dep Maven部署loyment for Maven builds will run directly from a remote slave when artifact archiving is turned off, saving valuable bandwidth and time normally consumed by copying artifacts back to master for archiving and publishing (requires Maven 3.0.2 and above)
  2. Staging of Maven builds now correctly fails if snapshot dependencies are used in POM files (哈P-183)
  3. All staging and promotion commit comments are now customizable (哈P-181)
  4. Fix for staged builds failing on remote slaves (哈P-189)
2.0.0 (4 May 2011)
  1. Release management with staging and promotionsupport
  2. Support for forcing artifact resolution in Maven 3 to go through Artifactory (哈P-144)
  3. Isolated resolutionfor snapshot build chains for Maven and Gradle
  4. Ability to attach custom properties to published artifacts (哈P-138)
  5. Improved Ant/Ivy integration
  6. Improved Gradle integration
  7. Support saving pinned builds (哈P-129,哈P-140)
  8. Option to delete deployed artifacts when synchronizing build retention (哈P-161)
1.4.3 (7 Apr 2011)
  1. Compatible to work with Jenkins 1.405 (哈P-159)
1.4.2 (27 Jan 2011)
  1. The plugin now works with Jenkins' new native Maven 3 jobs (哈P-130,哈P-131)
1.4.1 (10 Jan 2011)
  1. Synchronize the build retention policy in Artifactory with Jenkins' build retention settings (requires Artifactory Pro) (哈P-90)
1.4.0 (09 Jan 2011)
  1. Improved Gradle support
  2. Optimized checksum-based publishing with Artifactory 2.3.2+ that saves redeploying the same binaries (RTFACT-3808)
  3. Remote agent support for Gradle, Maven 3 and Ivy builds (哈P-59,哈P-60,哈P-114)
  4. Configurable ivy/artifact patterns for Ivy builds (哈P-120)
1.3.6 (21 Nov 2010)
  1. Allow specifying include/exclude patterns for published artifacts (哈P-61).
  2. Support for custom Ivy/artifact patterns for Gradle published artifacts (哈P-108).
1.3.5 (7 Nov 2010)
  1. Fixed integration with Jenkins maven release plugin. (哈P-93)
  2. Global Artifactory credentials (哈P-53)
  3. Auto preselect target release and snapshot repositories. (哈P-98)
1.3.4 (28 Oct 2010)
  1. Fixed Gradle support
1.3.3 (21 Oct 2010)
  1. Update version of the Gradle extractor.
1.3.2 (19 Oct 2010)
  1. Support for running license checks on third-party dependencies and sending license violation email notifications (哈P-91)
1.3.1 (19 Sep 2010)
  1. Maven 2 and Maven 3 support two target deploy repositories - releases and snapshots (哈P-29)
  2. Maven 2 - Allow deployment even if the build is unstable (哈P-77)
  3. Link to the build info next to each build that deployed build info (哈P-80)
  4. Link to the builds list in the jobs' main page (哈P-41)
  5. Allow skipping the creation and deployment of the build info (哈P-47)
1.3.0 (26 Aug 2010)
  1. New support for Maven 3 Beta builds!
1.2.0 (26 Jul 2010)
  1. New support for Ivy builds!(many thanks to Timo Bingaman for adding the hooks to the theJenkins Ivy Plugin)
  2. Supporting incremental builds (哈P-52)
  3. Testing connection to Artifactory in the main configuration page
  4. Update Jenkins dependency to version 1.358
  5. Fixed哈P-51- tar.gz files were deployed as .gz files
1.1.0 (09 Jun 2010)
  1. Added support for gradle jobs, see:http://www.jfrog.org/confluence/x/tYK5
  2. Connection timeout setting changed from milliseconds to seconds.
  3. Allow bypassing the http proxy (JENKINS-5892)
1.0.7 (04 Mar 2010)
  1. Improved Artifactory client
  2. Another fix for duplicate pom deployments
  3. Sending parent (upstream) build information
  4. Displaying only local repositories when working with Artifactory 2.2.0+
1.0.6 (16 Feb 2010)
  1. Fixed a bug in the plugin that in some cases skipped deployment of attached artifacts
  2. In some cases, pom were deployed twice
  3. MD5 hash is now set on all files
  4. Dependency type is passed to the build info
1.0.5 (22 Jan 2010)
  1. Using Jackson as JSON generator for BuildInfo (will fix issues with Hudson version 1.340-1.341)
1.0.4 (15 Jan 2010)
  1. Accept Artifactory urls with slash at the end
  2. Fixed JSON object creation to work with Hudson 1.340
1.0.3 (07 Jan 2010)
  1. Using preemptive basic authentication
1.0.2 (22 Dec 2009)
  1. Configurable connection timeout
1.0.1 (16 Dec 2009)
  1. Fixed Artifactory plugin relative location (for images and help files)
1.0.0 (14 Dec 2009)
  1. First stable release
  • 没有标签