Rat is failing due to generated files under bin directories

2018-09-27 Thread Kirk Lund
Command-line build seems to create these bin directories under each module which is fine. But now Rat is failing because of the generated files under these bin directories. This in turn causes my local command-line build to fail. Does anyone know how to make this problem go away without using "-x

Re: Rat is failing due to generated files under bin directories

2018-09-27 Thread Anthony Baker
That’s weird—I would expect any generated files to go into build/. Anyone know why stuff is landing in bin? Anthony > On Sep 27, 2018, at 7:25 PM, Kirk Lund wrote: > > Command-line build seems to create these bin directories under each module > which is fine. > > But now Rat is failing beca

Re: Rat is failing due to generated files under bin directories

2018-09-27 Thread Sai Boorlagadda
Intellij .uses 'bin' as output folder. On Thu, Sep 27, 2018 at 6:56 PM Anthony Baker wrote: > That’s weird—I would expect any generated files to go into build/. Anyone > know why stuff is landing in bin? > > Anthony > > > > On Sep 27, 2018, at 7:25 PM, Kirk Lund wrote: > > > > Command-line bui

Re: Rat is failing due to generated files under bin directories

2018-09-27 Thread Sai Boorlagadda
Kirk, We can exclude bin directory in `gradle/rat.gradle`. Sai On Thu, Sep 27, 2018 at 7:02 PM Sai Boorlagadda wrote: > Intellij .uses 'bin' as output folder. > > On Thu, Sep 27, 2018 at 6:56 PM Anthony Baker wrote: > >> That’s weird—I would expect any generated files to go into build/. >> An

Re: Rat is failing due to generated files under bin directories

2018-09-28 Thread Kirk Lund
My intellij appears to be configured to use "out" so I'm not sure how it created "bin" dirs but it's possible. I added "*/bin/*" to the exclude list in rat.gradle to try that out. Thanks! On Thu, Sep 27, 2018 at 8:34 PM, Sai Boorlagadda wrote: > Kirk, > > We can exclude bin directory in `gradle/

Re: Rat is failing due to generated files under bin directories

2018-09-28 Thread Sai Boorlagadda
I am wrong, it is probably eclipse. On Fri, Sep 28, 2018, 11:12 AM Kirk Lund wrote: > My intellij appears to be configured to use "out" so I'm not sure how it > created "bin" dirs but it's possible. I added "*/bin/*" to the exclude list > in rat.gradle to try that out. Thanks! > > On Thu, Sep 27

Re: Rat is failing due to generated files under bin directories

2018-09-28 Thread Kirk Lund
I filed a PR but then I noticed that there are some */bin/* dirs under the source trees in Geode, so it's probably not a good exclusion to commit. I think I'm going to close my PR and try to prevent the IDEs from creating additional bin dirs. On Fri, Sep 28, 2018 at 1:21 PM, Sai Boorlagadda wrote