搜索 Gradle 插件

net.wooga.build-unity

所有者: Manne Endres

此插件提供了从 Unity3D 项目导出平台项目所需的任务

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

来源: https://github.com/wooga/atlas-unity

使用 plugins DSL

plugins {
  id("net.wooga.build-unity") version "2.1.0"
}

使用 旧插件应用程序

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

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

使用 plugins DSL

plugins {
  id "net.wooga.build-unity" version "2.1.0"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "net.wooga.gradle:build-unity:2.1.0"
  }
}

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

学习如何将插件应用于子项目