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