Does anyone have example of sonarqube config for m...
# multiplatform
k
Does anyone have example of sonarqube config for mpp? Can't find what need to put to sources.
Especially interested when common code covered mostly by jvm tests.
To answer my own question: 1. add plugin 2.
Copy code
sonarqube {
    properties {
        property "sonar.sources", "src/commonMain"
        property "sonar.tests", "src/jvmTest"
    }
}
3. sometask.dependsOn project.tasks["sonarqube"] //as there task and extension with same name
k
👍