de.weltn24.sonarqube-conventions
Owner: WeltN24 CI-User
The plugin applies SonarQube configuration to projects according to WeltN24's best practices
https://github.com/WeltN24/gradle-sonarqube-conventions-plugin
Sources: https://github.com/WeltN24/gradle-sonarqube-conventions-plugin
Version 2.1.0 (latest)
Created 25 November 2015.
The plugin applies SonarQube configuration to projects according to WeltN24's best practices
Add this plugin to your build using the plugins DSL:
plugins {
id("de.weltn24.sonarqube-conventions") version "2.1.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.weltn24.sonarqube-conventions:de.weltn24.sonarqube-conventions.gradle.plugin:2.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("de.weltn24.sonarqube-conventions") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.weltn24.sonarqube-conventions:de.weltn24.sonarqube-conventions.gradle.plugin:2.1.0") } } apply(plugin = "de.weltn24.sonarqube-conventions")
- Applying plugins to all subprojects .