搜索Gradle插件

net.wooga.build-unity-webgl

所有者: Manne Endres

此插件提供从Unity3D构建导出webGL项目的任务

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

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

版本 0.16.0-rc.1(最新版)

0.16.0-rc.1

创建于2019年9月23日。

此插件提供从Unity3D构建导出webGL项目的任务

使用插件DSL

plugins {
  id("net.wooga.build-unity-webgl") version "0.16.0-rc.1"
}

使用旧插件应用

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

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

使用插件DSL

plugins {
  id "net.wooga.build-unity-webgl" version "0.16.0-rc.1"
}

使用旧插件应用

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

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

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