Search Gradle plugins

net.wooga.wdk-unity

This plugin provides tasks to define and copy development dependencies into the Unity3D project

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

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

Version 3.1.0

3.1.0

Created 18 May 2022.

This plugin provides tasks to define and copy development dependencies into the Unity3D project

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.wdk-unity") version "3.1.0"
}

See also:

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