搜索Gradle插件

版本 1.0.1(最新版)

1.0.1

创建于 2019 年 9 月 9 日。

自定义软键

使用 插件 DSL

plugins {
  id("wg.soft.key") version "1.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.wg.soft.key:softKeyPlugin:1.0.1")
  }
}

apply(plugin = "wg.soft.key")

使用 插件 DSL

plugins {
  id "wg.soft.key" version "1.0.1"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.wg.soft.key:softKeyPlugin:1.0.1"
  }
}

apply plugin: "wg.soft.key"

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