On 6 July 2015 at 14:17, Gordon Sim <[email protected]> wrote: > On 07/06/2015 01:24 PM, Rafael Schloming wrote: >> >> Can you try doing an mvn clean and seeing if it is still an issue? > > > I see the same thing after mvn clean >
Does cleaning the checkout as a whole make any difference? To preview what woudl be deleted: git clean -n -d -x -e "*.classpath" -e "*.project" -e "*.settings" . To actually delete things: git clean -f -d -x -e "*.classpath" -e "*.project" -e "*.settings" . The -e flags are protecting project files generated by Eclipse...if you dont use it, no need for them.
