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 2.0.0-rc.1

2.0.0-rc.1

Created 14 June 2021.

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 "2.0.0-rc.1"
}

See also:

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