Defines the job from which the user can pick runs. The last run achieving the promotion will be the default.
The implementation provides a support of multi-level addressing including special markups
for the relative addressing. Effectively, the resolution order is following:
- Optional Legacy behavior, which existed till 2.22.
It is disabled by default.
If enabled and there is an item for the name on the top Jenkins level, it will be returned.
Use hudson.plugins.promoted_builds.util.ItemPathResolver.enableResolutionAgainstRoot
Boolean system property to enable it.
- If the path starts with "/", a global addressing will be used
- If the path starts with "./" or "../", a relative addressing will be used
- If there is no prefix, a relative addressing will be tried. If it
fails, the method falls back to a global one
For the relative and absolute addressing the engine supports "." and
".." markers within the path.
The first one points to the current element, the second one - to the upper element.