I’m using CircleCI to build for SonarCloud, analyzing a Kotlin app. After the first analysis, I had to “rename” the main branch in SonarCloud from ‘master’ to ‘develop’.
In my sonar-project.properties file I have this line with actual info in it:
I’m using a job in to the CircleCI build config.yml file, using a run step of:
cd source
./gradlew build sonarqube
on the CircleCI circleci/android@2.0.3 orb. The gradle file uses plugin id “org.sonarqube” version “3.4.0.2513”, and the sonarqube gradle config includes the properties “sonar.projectKey”, “sonar.organization”, and “sonar.host.url”