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