搜索Gradle插件

版本 0.10.6(最新版)

0.10.6

创建于 2023 年 7 月 21 日。

Google Play服务Oss Licenses插件的分叉

使用plugins DSL

plugins {
  id("com.geekorum.gms.oss-licenses-plugin") version "0.10.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.geekorum.gms:oss-licenses-plugin:0.10.6")
  }
}

apply(plugin = "com.geekorum.gms.oss-licenses-plugin")

使用plugins DSL

plugins {
  id "com.geekorum.gms.oss-licenses-plugin" version "0.10.6"
}

使用旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.geekorum.gms:oss-licenses-plugin:0.10.6"
  }
}

apply plugin: "com.geekorum.gms.oss-licenses-plugin"

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