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)
2.1.0
Created 25 November 2015.
The plugin applies SonarQube configuration to projects according to WeltN24's best practices
Using the plugins DSL:
plugins {
id("de.weltn24.sonarqube-conventions") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.weltn24:sonarqube-conventions:2.1.0")
}
}
apply(plugin = "de.weltn24.sonarqube-conventions")
Using the plugins DSL:
plugins {
id "de.weltn24.sonarqube-conventions" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.weltn24:sonarqube-conventions:2.1.0"
}
}
apply plugin: "de.weltn24.sonarqube-conventions"