Search Gradle plugins

net.wooga.build-unity

This plugin provides tasks for exporting platform projects from Unity3D projects

https://wooga.github.io/atlas-unity/

Sources: https://github.com/wooga/atlas-unity

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.build-unity") version "1.0.0-rc.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.wooga.gradle:atlas-build-unity:1.0.0-rc.2")
      }
    }
    
    apply(plugin = "net.wooga.build-unity")
  • Applying plugins to all subprojects .