-
Notifications
You must be signed in to change notification settings - Fork 8
SonarQube
Thomas Amberg edited this page Nov 23, 2020
·
29 revisions
Installing a local instance of the SonarQube service.
- ...
-
Open your Android project
-
Open the build.gradle file
-
After the buildscript { ... } block, add
plugins { id "org.sonarqube" version "2.7" }
-
On the console / terminal, type:
$ ./gradlew sonarqube \ -Dsonar.projectKey=blinky \ -Dsonar.host.url=http://localhost:9000 \ -Dsonar.login=YOUR_SONARQUBE_PROJECT_TOKEN
-
Access the result on