Search Gradle plugins

de.weltn24.sonarqube

The plugin applies SonarQube configuration to projects according to WeltN24's best practices

https://github.com/WeltN24/gradle-sonarqube-plugin

Sources: https://github.com/WeltN24/gradle-sonarqube-plugin

Version 1.1.3 (latest)

1.1.3

Created 18 September 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") version "1.1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.weltn24:sonarqube:1.1.3")
      }
    }
    
    apply(plugin = "de.weltn24.sonarqube")
  • Applying plugins to all subprojects .