Search Gradle plugins

net.wooga.unity

This plugin provides tasks for working with Unity3D projects

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

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

Using the plugins DSL:

plugins {
  id("net.wooga.unity") version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.net.wooga.gradle:atlas-unity:2.2.0")
  }
}

apply(plugin = "net.wooga.unity")

Using the plugins DSL:

plugins {
  id "net.wooga.unity" version "2.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.net.wooga.gradle:atlas-unity:2.2.0"
  }
}

apply plugin: "net.wooga.unity"

Learn how to apply plugins to subprojects