Search Gradle plugins

net.wooga.paket-unity

This plugin provides tasks to apply the Paket.Unity3D extension

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

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.wooga.paket-unity") version "4.6.0"
}

See also:

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