So I have an XML file (Checkstyle settings) and a jar.
When looking in eclipse-cs plugin preferences I didn't find a way to take in account my jar. After a few internet searches in found on the eclipse-cs this link. And all comes clear. To do this integration you have to create an eclipse plugin using eclipsecs extension point :
- check out the source code of "
net.sf.eclipsecs.sample
" - put the jar in this plugin project and add this jar to the plugin class path
- put your xml settings in the plugin and and use plugin extension "
net.sf.eclipsecs.core.configuration
"for registration (location ="yourSettings.xml). see
- Package and deploy.