To begin with, I'm aware of this question. Since I'm neither using maven or jenkins, I can't use the provided solution.
When analysing my project with sonar-runner, I get the following warning :
Class 'XXX/XXX/XXX' is not accessible through the ClassLoader
on every class of my project. I also get the following warning from the jacoco coverage plugin :
No JaCoCo analysis of project coverage can be done since there is no class files.
My sonar-runner properties are defined as follows :
sonar.sources=com // sources are analysed
sonar.tests=Tests/JUnit/com // works, since wrong location results in an error
sonar.binaries=bin/com // no presence in logs
sonar.java.libraries=dependencies/*.jar // no presence in logs.
sonar.junit.reportsPath=rapports/junit // results are displayed
sonar.java.coveragePlugin=jacoco
sonar.jacoco.reportPath=rapports/jacoco/coverage.exec // not logged
Needless to say, I checked the various path (event replaced them by their absolute counterparts or by listing every jar in binaries) but I'm unable to make the analysis.
Any ideas on what may go wrong ?