vote up 0 vote down star

I'm working with a maven (jar) Project in Netbeans(Windows), which creates Checkstyle Reports with the maven checkstyle Plugin.

No Matter what i do, i always get the message: File does not end with a newline. for Java Class Files.

What can i do/configure in either Netbeans (Formatter) or for the checkstyle plugin to get rid of the Message ?

Versions of used Software:

  • WinXP SP3
  • Netbeans 6.7 RC1 (happens with 6.5 too)
  • Maven 2.0.9
  • Maven Checkstyle Plugin 2.2
  • Java 1.6 (Update 14)
flag

1 Answer

vote up 3 vote down check

Put a newline at the end of the file. or Configure CheckStyle to not care.

<module name="Checker">
<!-- stuff deleted -->
    <module name="NewlineAtEndOfFile">
        <property name="severity" value="ignore" />
</module>


You also have to tell the Maven Checkstyle plugin to use your checkstyle config file.

<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
	<configuration>
	 	<configLocation>${basedir}/yourCheckstyle.xml
	  	</configLocation>
	</configuration>
</plugin>
link|flag
"Put a newline at the end of the file." that seems to be impossible with netbeans on windows – Michael Lange Jun 19 at 11:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.