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 4.1.0.3113
4.1.0.3113
Created 26 May 2023.
Gradle plugin to help analyzing projects with SonarQube
Add this plugin to your build using the plugins DSL:
plugins {
id("org.sonarqube") version "4.1.0.3113"
}
See also:
-
The legacy method of plugin application.
buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.1.0.3113") } } apply(plugin = "org.sonarqube")
- Applying plugins to all subprojects .