can anyone suggest me a plugin/tool that can perform a code formatting at build time.
+1
A:
Assuming for Java, there are many that you can plugin to Eclipse like CheckStyle, Jalopy, Findbugs
These can also run with Ant/Maven as part of the build
JoseK
2010-03-12 06:06:03
CheckStyle and FindBugs don't format the code, they just report on a configurable list of formatting problems and / or coding errors. Jalopy is a good option, though.
gareth_bowles
2010-03-12 18:07:43
yes its required for Java.
Chinmay
2010-03-13 13:47:59
+2
A:
The Jalopy Maven Plugin has a jalopy:format
mojo that can do that.
Pascal Thivent
2010-03-12 06:30:11