Correction.. my memory was faulty. The project I was thinking about is 
spring-security 

The root project has some stuff in the settings.gradle file like this:

def String[] samples = [
    'tutorial',
    'contacts',
    ...
]

include samples

samples.each {name ->
    p = findProject(":${name}")
    def fullName = name.replaceAll('/','')
    p.name = "spring-security-samples-${fullName}"
    p.buildFileName = "${fullName}.gradle"
    p.projectDir = new File(settingsDir, "samples/${name}");
}

Kris

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email


Reply via email to