Search Gradle plugins

net.wooga.unity-sonarqube

This plugin provides tools to run sonarqube scans for .NET unity solutions

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

Sources: https://github.com/wooga/atlas-unity

Version 2.0.0-rc.1

2.0.0-rc.1

Created 22 April 2024.

This plugin provides tools to run sonarqube scans for .NET unity solutions

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.unity-sonarqube") version "2.0.0-rc.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.wooga.gradle:dotnet-sonarqube:2.0.0-rc.1")
      }
    }
    
    apply(plugin = "net.wooga.unity-sonarqube")
  • Applying plugins to all subprojects .