搜索 Gradle 插件

net.wooga.gradle.dotnet-sonarqube

所有者: Manne Endres

此插件提供用于运行 .NET 解决方案 SonarQube 扫描的工具

https://wooga.github.io/atlas-unity/

源代码: https://github.com/wooga/atlas-unity

版本 2.0.0 (最新)

2.0.0

创建于 2024 年 8 月 6 日。

此插件提供用于运行 .NET 解决方案 SonarQube 扫描的工具

使用 plugins DSL

plugins {
  id("net.wooga.gradle.dotnet-sonarqube") version "2.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:dotnet-sonarqube:2.0.0")
  }
}

apply(plugin = "net.wooga.gradle.dotnet-sonarqube")

使用 plugins DSL

plugins {
  id "net.wooga.gradle.dotnet-sonarqube" version "2.0.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:dotnet-sonarqube:2.0.0"
  }
}

apply plugin: "net.wooga.gradle.dotnet-sonarqube"

学习如何应用插件到子项目中