net.wooga.build-unity
Owner: Manne Endres
This plugin provides tasks for exporting platform projects from Unity3D projects
https://wooga.github.io/atlas-unity/
Sources: https://github.com/wooga/atlas-unity
Version 2.1.0 (latest)
2.1.0
Created 04 September 2023.
This plugin provides tasks for exporting platform projects from Unity3D projects
Using the plugins DSL:
plugins {
id("net.wooga.build-unity") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("net.wooga.gradle:build-unity:2.1.0")
}
}
apply(plugin = "net.wooga.build-unity")
Using the plugins DSL:
plugins {
id "net.wooga.build-unity" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "net.wooga.gradle:build-unity:2.1.0"
}
}
apply plugin: "net.wooga.build-unity"