For the last months I've been slowly improved the Eclipse automated PDE build process for our application.
The first thing I tried was automating the test cases. The next step was some scripting code to generate an installer automatically, for both linux and windows.
Now I want to add some static code analysis reports to the process. In my company we use Checkstyle for this purpose.
I understand that it is possible to automate the Checkstyle plugin in such a way that it can generate a report from the build process. It would be useful to distribute the checkstyle results together with the unit test report, which are being generated already.
Does anyone has some good example of how this can be achieved in a relatively painless way?