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

We want to remove all system.out.println from the project.

How to configure the pom or what are the dependencies which are required for the same.

Thanks, Anil

share|improve this question
you may want to search among the available plugins for maven to see if there's one that can help you maven.apache.org/plugins/index.html – mfirry Aug 8 '12 at 7:38

1 Answer

I haven't done this personally but take a look at FindBugs. The Maven plugin can be found here.

You could write your own custom detector that searches for System.out.print and System.out.println. For more information see this site:

http://www.ibm.com/developerworks/library/j-findbug2/

share|improve this answer

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.