RSS
 

Keeping Groovy Beans in the same file

02 Sep

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
}

...
 
No Comments

Posted in Groovy

 

Tags:

Leave a Reply