Search Gradle plugins

Version 1.3 (latest)

1.3

Created 12 July 2017.

Gradle-Plugin that allows project to be analyzed by sonarqube even if they contain sources as well as sub-modules

Add this plugin to your build using the plugins DSL:

plugins {
  id("argelbargel.gradle.plugins.sonarqube-multiproject-plugin") version "1.3"
}

See also:

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