Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Version published after converting to the new editor

Target Properties are available in Workflow Editor (UI), Shell Plugins, and Script based plugins.

...

  • myinstance='SAMPLEAPPS'
  • myproperty='FDSVN_URL'
  • mydynamicvar=${myinstance}_${myproperty}
    • SAMPLEAPPS_FDSVN_URL
  • echo ${mydynamicvar}

Groovy

Code Block
languagegroovy
titleFind value for specific instance
getProperty(propertyName)

...