Search Gradle plugins

Version 1.0 (latest)

Created 24 April 2019.

Gradle Unity packager plugin

Using the plugins DSL:

plugins {
  id("com.github.ngyewch.unity.packager.gradle") version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.ngyewch.unitypackager:unity-packager-gradle-plugin:1.0")
  }
}

apply(plugin = "com.github.ngyewch.unity.packager.gradle")

Using the plugins DSL:

plugins {
  id "com.github.ngyewch.unity.packager.gradle" version "1.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.ngyewch.unitypackager:unity-packager-gradle-plugin:1.0"
  }
}

apply plugin: "com.github.ngyewch.unity.packager.gradle"

Learn how to apply plugins to subprojects