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 (latest)

2.0.0

Created 06 August 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"
}

See also:

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