Hi Ken, Yes, what you're seeing is a left-over directory from an old Flink version. These files are automatically generated during build time and not tracked by Git. That's why they didn't get deleted when the directory moved.
You probably want to cleanup these files (careful, will delete all folders/files not part of Flink): "git clean -f -d" You can use "git clean -f -d -n" for a dry-run to see which files would be deleted. Cheers, Max On Fri, May 6, 2016 at 5:30 AM, Ken Krugler <kkrugler_li...@transpac.com> wrote: > Hi devs, > > So it looks like I had some cruft (??) left over from a previous version of > Flink? > > The flink-staging directory no longer exists in master. Looks like apache-rat > was configured to search everything from the top down, so it found these > Avro-generated files in that directory. > > Sorry for the noise… > > — Ken > > ====================================================================================================== > > > > I was trying to run mvn clean install -DskipTests from the release-1.0.3-r2 > branch, but the apache-rat-plugin license check was failing on four files. > > These were in all Avro-generated files, in > flink-staging/flink-avro/src/test/java/org/apache/flink/api/io/avro/generated/ > > I added > > > <exclude>flink-staging/flink-avro/src/test/java/org/apache/flink/api/io/avro/generated/**</exclude> > > to the <excludes> list for RAT, but I’m wondering why nobody else is hitting > this. > > Thanks, > > — Ken >