搜索 Gradle 插件

版本 0.2.0 (最新版本)

0.2.0

创建于 2023 年 8 月 23 日。

gradle 的 Unity 许可证客户端插件

使用 plugins DSL

plugins {
  id("net.wooga.unity-license") version "0.2.0"
}

使用 旧插件应用程序

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

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

使用 plugins DSL

plugins {
  id "net.wooga.unity-license" version "0.2.0"
}

使用 旧插件应用程序

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

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

了解如何将插件应用到子项目中