In the file myConfig.groovy is the following content.
message = 'Hello World!'
aNumber=42
aBoolean=false
aList=["apples", "grapes", "oranges"]
Then in your main script you create a ConfigSlurper for your myConfig.groovy file which is really just another groovy sc...