net.wooga.unity-license
所有者: Manne Endres
gradle 的 Unity 许可证客户端插件
https://wooga.github.io/atlas-unity-license/
源代码: https://github.com/wooga/atlas-unity-license
使用 plugins DSL
plugins {
id("net.wooga.unity-license") version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:unity-license:0.2.0")
}
}
apply(plugin = "net.wooga.unity-license")
使用 plugins DSL
plugins {
id "net.wooga.unity-license" version "0.2.0"
}
使用 旧插件应用程序
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:unity-license:0.2.0"
}
}
apply plugin: "net.wooga.unity-license"