com.intershop.gradle.sonarQube
Owner: M.Raab
Gradle plugin to analyze Intershop Components with SonarQube
https://github.com/IntershopCommunicationsAG/sonarqube-gradle-plugin
Sources: https://github.com/IntershopCommunicationsAG/sonarqube-gradle-plugin
Version 2.1.3 (latest)
Created 24 June 2023.
Gradle plugin to analyze Intershop Components with SonarQube
Add this plugin to your build using the plugins DSL:
plugins {
id("com.intershop.gradle.sonarQube") version "2.1.3"
}
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("com.intershop.gradle.sonarQube:com.intershop.gradle.sonarQube.gradle.plugin:2.1.3") }
It can then be applied in the precompiled script plugin:plugins { id("com.intershop.gradle.sonarQube") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.intershop.gradle.sonarQube:com.intershop.gradle.sonarQube.gradle.plugin:2.1.3") } } apply(plugin = "com.intershop.gradle.sonarQube")
- Applying plugins to all subprojects .