Maven coolness
Now that Maven is working with all the subprojects of Marid (Framework, Services, Applications), it turns out that there was a bit of cleanup required (actually, quite a bit).
The largest number of entries from checkstyle was generated from the
Since Eclipse controls most of this as a part of normal development, we have included in the source control system, the eclipse java source formatter settings.
It has taken the last 3 days to clean up 99% of the checkstyle complaints.
The largest number of entries from checkstyle was generated from the
<module name="TabCharacter"/>
. Second was the use of Left and Right Curly.
<module name="LeftCurly">
<property name="option" value="nlow"/>
</module>
<module name="RightCurly"/>
Since Eclipse controls most of this as a part of normal development, we have included in the source control system, the eclipse java source formatter settings.
It has taken the last 3 days to clean up 99% of the checkstyle complaints.
Comments