Hi I have set up a groovy project analyzing with sonar-runner, it works for complexity, lines of code etc but the code coverage shows "-" and unit testing is 0%. This is the sonar-runner properties file I am using Groovy plug in 0.6 Sonar runner 2.3 Sonar Qube 3.7 Jacoc
sonar.projectKey=Groovy
sonar.projectName= Groovy SonarQube Runner
sonar.projectVersion=1.0
sonar.sources=src
sonar.language=grvy
sonar.binaries=target/classes
sonar.libraries=lib
sonar.junit.reportsPath=test/unit
sonar.core.codeCoveragePlugin=jacoco
sonar.jacoco.reportPath=test/coverage/jacoco.exec
sonar.sourceEncoding=UTF-8
I was wondering if somebody could point me in the right direction