Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use checkstyle to analyze my code. A useful rule is PackageHtml, that checks, if a package contains a Javadoc-description. But with newer java-version it's recommended to use package-info.java instead of package.html. Problem is, checkstyle ignores the package-info.java and reports a rule violation. How can checkstyle be configured to check for package-documentation, but accepts package.html and package-info.java?

share|improve this question

1 Answer

up vote 3 down vote accepted

What version of CheckStyle are you using ?

It seems to be an old bug closed late 2007.

Actually, the documentation mentions package-info as being the default!... but only with CheckStyle 5.x, not 4.4

The announce for CheckStyle5.0 beta1 is here.
CheckStyle 4.4 is the last one compatible with jdk1.4

share|improve this answer
I use the stable version. You say that this works in the upcoming release? That would be cool. Then I can't wait for the new version. – Mnementh Oct 6 '08 at 12:07
Yes, the checkstyle 5.5 is more JDK5 or JDK6 oriented, but I believe you can use it right now. – VonC Oct 6 '08 at 13:12
Thanks, it works fine. As I don't want rely too much on beta-version, I hope they will move fast to the final release. – Mnementh Oct 17 '08 at 11:56
Thank you for this positive feedback. I will update this post as soon as checkstyle 5.0 will be officially released. – VonC Oct 17 '08 at 12:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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