params
Configures pipeline parameters
Example. Environment variable
params {
param("env.JAVA_HOME", "/usr/java")
}Content copied to clipboard
Example. Password
Note: instead of a plain text password a token should be generated and used in DSL code. See also typed parameters
params {
password("password", "credentialsJson:abc")
}Content copied to clipboard
Pipeline parameters