It is so handy to keep a bunch of Groovy Beans in the same file!
"Beans.groovy":
class Artifactory
{
String name
String repository
boolean deployArtifacts = true
String user
String scrambledPassword
}
class Mail
{
String recipients
boolean sendForUnstable = true
boolean sendToIndividuals = true
}
...
