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