net.wooga.gradle.dotnet-sonarqube
Owner: Manne Endres
This plugin provides tools to run sonarqube scans for .NET solutions
https://wooga.github.io/atlas-unity/
Sources: https://github.com/wooga/atlas-unity
Version 0.2.0-rc.1
0.2.0-rc.1
Created 30 September 2021.
This plugin provides tools to run sonarqube scans for .NET solutions
Using the plugins DSL:
plugins {
id("net.wooga.gradle.dotnet-sonarqube") version "0.2.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-dotnet-sonarqube:0.2.0-rc.1")
}
}
apply(plugin = "net.wooga.gradle.dotnet-sonarqube")
Using the plugins DSL:
plugins {
id "net.wooga.gradle.dotnet-sonarqube" version "0.2.0-rc.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-dotnet-sonarqube:0.2.0-rc.1"
}
}
apply plugin: "net.wooga.gradle.dotnet-sonarqube"