org.sonarqube
Owner: SonarSource
Gradle plugin for running SonarQube analysis.
http://redirect.sonarsource.com/doc/gradle.html
Sources: https://github.com/SonarCommunity/sonar-gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("org.sonarqube") version "2.0"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.0") } } apply(plugin = "org.sonarqube")
- Applying plugins to all subprojects .