]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-16430 Update SonarScanner for Gradle article (#6068)
authorChristine Curry <89850583+christine-curry-sonarsource@users.noreply.github.com>
Thu, 9 Jun 2022 15:02:37 +0000 (16:02 +0100)
committersonartech <sonartech@sonarsource.com>
Thu, 9 Jun 2022 20:03:15 +0000 (20:03 +0000)
server/sonar-docs/src/pages/analysis/scan/sonarscanner-for-gradle.md

index 8ca174086111948c87b7995c353d2438f74ffb94..bfa87bd991ce9c897dbfe3e3cdc49e48e362a579 100644 (file)
@@ -30,7 +30,7 @@ systemProp.sonar.host.url=http://localhost:9000
 ```
 
 ## Analyzing
-First, include the scanner in your build in `build.gradle`:
+First, you need to activate the scanner in your build. For Gradle 2.1+, apply the SonarQube plugin dependency to your build.gradle file below::
 
 ```
 plugins {
@@ -38,7 +38,7 @@ plugins {
 }
 ```
 
-More details on https://plugins.gradle.org/plugin/org.sonarqube
+Ensure that you declare the plugins in the correct sequence required by Gradle, that is, after the buildscript block in your build.gradle file. More details on https://plugins.gradle.org/plugin/org.sonarqube
 
 Assuming a local SonarQube server with out-of-the-box settings is up and running, no further configuration is required.