Having recently upgraded from a previous version of Gradle, I started getting a warning that I should use the official SonarQube plugin:
The \'sonar-runne
We got the plugin into Gradle by adding
classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:1.2"
to buildscript dependencies. We then added
apply plugin: 'org.sonarqube'
to activate it. Our local Artifactory instance is set up to proxy jCenter and mavenCentral.