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 1.1.1

1.1.1

Created 25 September 2018.

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 "1.1.1"
}

See also:

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