davide.cavestro wrote:
> 
> is there any example somewhere?
> 

settings.gradle:

def path = [] as LinkedList

rootDir.traverse(
    type: groovy.io.FileType.FILES,
    nameFilter: ~/.+\.gradle/,
    maxDepth: 3,
    preDir: { path << it.name },
    postDir: { path.removeLast() }) { if (path) include path.join(":") }

You can tweak this according to your specific needs/wishes. You can't get
access to the Project instances from settings.gradle because they haven't
been created yet.

Cheers,
Peter

--
View this message in context: 
http://gradle.1045684.n5.nabble.com/Nested-multi-projects-and-caveats-tp4480779p4805669.html
Sent from the gradle-user mailing list archive at Nabble.com.

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

    http://xircles.codehaus.org/manage_email


Reply via email to