net.wooga.wdk-unity
Owner: Manne Endres
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 4.0.0 (latest)
4.0.0
Created 26 June 2023.
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 "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:wdk-unity:4.0.0")
}
}
apply(plugin = "net.wooga.wdk-unity")
Using the plugins DSL:
plugins {
id "net.wooga.wdk-unity" version "4.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:wdk-unity:4.0.0"
}
}
apply plugin: "net.wooga.wdk-unity"