Re: Problem mvn install

2015-03-02 Thread Fabian Hueske
Hi Matthias, I just checked and could not reproduce the error. The files that Maven RAT complained about do not exist in Flink's master branch. I don't think they are put there as part of the build process. Best, Fabian 2015-03-02 15:09 GMT+01:00 Matthias J. Sax

Re: Problem mvn install

2015-03-02 Thread Stephan Ewen
Matthias! The files should not exist. Has some IDE setup copied the files into the bin directory (as part of compiling it without maven) ? It looks like you are building it not through maven really... BTW: Does it make a difference whether you use mvn -Dmaven.test.skip=true clean install or mvn

Re: Problem mvn install

2015-03-02 Thread Matthias J. Sax
I guess, Eclipse created those files. I delete them manually, what resolved the problem. I added bin to my local .gitignore and thus git status did not list the files and I was not aware the they are not part of the repository. As far as I know, -Dmaven.test.skip=true is equal to -DskipTests.