net.wooga.wdk-unity
所有者: Manne Endres
此插件提供了任务,以定义和将开发依赖项复制到 Unity3D 项目中
https://wooga.github.io/atlas-wdk-unity/
来源:https://github.com/wooga/atlas-wdk-unity
使用 plugins DSL
plugins {
id("net.wooga.wdk-unity") version "4.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:wdk-unity:4.0.0")
}
}
apply(plugin = "net.wooga.wdk-unity")
使用 plugins DSL
plugins {
id "net.wooga.wdk-unity" version "4.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:wdk-unity:4.0.0"
}
}
apply plugin: "net.wooga.wdk-unity"