Hello,
There is a checkStyle error when i build master branch on Windows : File does not end with a newline.
By default, checkstyle use the system line separator.
I checkout code from unix system and build on windows.
Or, line separator are different.
So, configure checkstyle to use "crlf" (Windows-style), "cr" (Mac-style), "lf" (Unix-style)
http://checkstyle.sourceforge.net/config_misc.html#NewlineAtEndOfFile
<module name="NewlineAtEndOfFile"> <property name="lineSeparator" value="lf_cr_crlf" /> </module>
Build is success on windows with this configuration
Farès