views:

61

answers:

2

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
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
yes its required for Java.
Chinmay
+2  A: 

The Jalopy Maven Plugin has a jalopy:format mojo that can do that.

Pascal Thivent
Awesome, this looks really cool!
James Kingsbery