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.0.13

1.0.13

Created 22 June 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.0.13"
}

See also:

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