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 1.0.2
1.0.2
Created 29 July 2018.
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 "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.wooga.gradle:atlas-wdk-unity:1.0.2")
}
}
apply(plugin = "net.wooga.wdk-unity")
Using the plugins DSL:
plugins {
id "net.wooga.wdk-unity" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.wooga.gradle:atlas-wdk-unity:1.0.2"
}
}
apply plugin: "net.wooga.wdk-unity"