net.wooga.unity-license
Owner: Manne Endres
A Unity Licensing Client plugin for gradle
https://wooga.github.io/atlas-unity-license/
Sources: https://github.com/wooga/atlas-unity-license
Version 0.2.0 (latest)
0.2.0
Created 23 August 2023.
A Unity Licensing Client plugin for gradle
Using the plugins DSL:
plugins {
id("net.wooga.unity-license") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:unity-license:0.2.0")
}
}
apply(plugin = "net.wooga.unity-license")
Using the plugins DSL:
plugins {
id "net.wooga.unity-license" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:unity-license:0.2.0"
}
}
apply plugin: "net.wooga.unity-license"