搜索 Gradle 插件

版本 1.0 (最新版本)

1.0

创建于 2019 年 4 月 24 日。

随着 JCenter 永久重定向到 Maven Central,本插件版本将无法解析(因为它仅在 JCenter 中使用依赖项)。有关详细信息,请参阅以下博客文章:https://blog.gradle.org.cn/portal-jcenter-impact Gradle Unity 打包插件

使用 插件 DSL

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

使用 旧插件应用

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

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

使用 插件 DSL

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

使用 旧插件应用

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

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

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