tech.harmonysoft.custom-gradle-dist-plugin
所有者: Denis Zhdanov
帮助设置自定义 Gradle Wrapper 构建过程
http://gradle-dist.oss.harmonysoft.tech/
源代码: https://github.com/denis-zhdanov/custom-gradle-dist-gradle-plugin
使用 插件 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"