New line or comma separated references to other artifacts that this build should use as dependencies.
Each reference is specified in the format of:
repo_key:path_pattern[;prop=val1,val2[;prop2+=val3][@build_name#build_number][=>target_dir], where:
repo_key - A key of the Artifactory repository that contains the dependencies (may contain the * and the ? wildcards).
path_pattern - An Ant-like pattern of the dependencies path within the Artifactory (may contain the * and the ? wildcards).
For example: repo-key:dir/*/bob/*.zip (** wilcards are not supported)
Artifacts can be downloaded conditionally based on their property values in Artifactory.
For example, to download all zip files marked as production ready: repo-key:dir/*/bob/*.zip;status+=prod.
For more details see the plug-in's documentation.
build_name - The name of the build that was published to Artifactory, of which dependencies should be resolved.
build_number - A specific build run number. Can be LATEST to depend on the latest build run, or LAST_RELEASE to depend on the latest build with a "release" status.
For example: repo-key:dir/**/bob/*.zip@myBuild#LATEST
target_dir - An optional target directory to where resolved dependencies will be downloaded.
By default dependencies will be downloaded to a path under the build workspace.
For example: repo-key:*.zip=>winFiles, repo-key:unix/distro.tgz=>linuxFiles, where winFiles and linuxFiles are target directories.
Target directories can either be absolute or relative to the working directory.