Search Gradle plugins

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "net.wooga.paket-unity" version "1.0.1"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects