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.3.0

Created 16 December 2022.

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

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("net.wooga.gradle:wdk-unity:3.3.0")
  }
}

apply(plugin = "net.wooga.wdk-unity")

Using the plugins DSL:

plugins {
  id "net.wooga.wdk-unity" version "3.3.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:wdk-unity:3.3.0"
  }
}

apply plugin: "net.wooga.wdk-unity"

Learn how to apply plugins to subprojects