搜索Gradle插件

net.wooga.unity-sonarqube

所有者: Manne Endres

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

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

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

版本 2.0.0 (最新版)

2.0.0

创建于 2024年8月6日。

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

使用插件DSL

plugins {
  id("net.wooga.unity-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.unity-sonarqube")

使用插件DSL

plugins {
  id "net.wooga.unity-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.unity-sonarqube"

了解如何将插件应用于子项目