Re: [gradle-user] source set includes/excludes

2011-05-02 Thread Szczepan Faber
Hey, sourceSets { main { java { exclude 'com/fee/**' } } } Cheers! Szczepan On Mon, May 2, 2011 at 9:01 AM, Magnus Grimsell wrote: > Hi all, > > > > I’m a Gradle (and Groovy)  newbie so I apologize if I’m asking the obvious J > > > > I have a project layout like this. > > > >

[gradle-user] source set includes/excludes

2011-05-02 Thread Magnus Grimsell
Hi all, I'm a Gradle (and Groovy) newbie so I apologize if I'm asking the obvious :) I have a project layout like this. src/main/java/com/foo src/main/java/com/fee I would like to restrict the source set to only include classes from the com.foo package. How do I do that? /Magnus