搜索 Gradle 插件

版本 1.2 (最新)

1.2

创建于 2018年10月14日。

帮助设置自定义 Gradle Wrapper 构建过程

使用 插件 DSL

plugins {
  id("tech.harmonysoft.custom-gradle-dist-plugin") version "1.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tech.harmonysoft:gradle-distribution-gradle-plugin:1.2")
  }
}

apply(plugin = "tech.harmonysoft.custom-gradle-dist-plugin")

使用 插件 DSL

plugins {
  id "tech.harmonysoft.custom-gradle-dist-plugin" version "1.2"
}

使用 旧插件应用程序

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tech.harmonysoft:gradle-distribution-gradle-plugin:1.2"
  }
}

apply plugin: "tech.harmonysoft.custom-gradle-dist-plugin"

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