-
Type:
New Feature
-
Resolution: Unresolved
-
Priority:
Minor
-
Component/s: parameterized-remote-trigger-plugin
-
Environment:Jenkins 2.346.1
Parameterized Remote Trigger Plugin version 3.1.6.1
in version 3.1.6.1 the multiline parameters does not work anymore like:
parameters: Â """
  PROJECT_NAME=${projectName}
  RELEASE_NAME=${releaseName}
  STORAGE_LOCATION=${lastBuild}
  DASHBOARD_LOCATION=${lastBuild}\\..
RegressionTest""",
Â
Unfortionatly there is no documentation on this and after looking into the code it seems that it needs to be programmed like:
parameters: [
       "PROJECT_NAME"    : "${projectName}",
       "RELEASE_NAME"    : "${releaseName}",
       "STORAGE_LOCATION"  : "${lastBuild}",
       "DASHBOARD_LOCATION" : "${lastBuild}\\..
RegressionTest"
      ],
Â
Please document these kind of changes !!