Search Gradle plugins

net.wooga.wdk-unity

This plugin provides tasks to define and copy development dependencies into the Unity3D project

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

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

Version 2.1.1-rc.1

Created 20 October 2021.

This plugin provides tasks to define and copy development dependencies into the Unity3D project

Using the plugins DSL:

plugins {
  id("net.wooga.wdk-unity") version "2.1.1-rc.1"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.wooga.wdk-unity" version "2.1.1-rc.1"
}

Using legacy plugin application:

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

apply plugin: "net.wooga.wdk-unity"

Learn how to apply plugins to subprojects