tech.harmonysoft.oss.custom-gradle-dist-plugin
所有者: Denis Zhdanov
帮助设置自定义Gradle wrapper构建
https://gradle-dist.oss.harmonysoft.tech/
来源:https://github.com/denis-zhdanov/custom-gradle-dist-gradle-plugin
使用插件DSL
plugins {
id("tech.harmonysoft.oss.custom-gradle-dist-plugin") version "1.19.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("tech.harmonysoft:gradle-distribution-gradle-plugin:1.19.0")
}
}
apply(plugin = "tech.harmonysoft.oss.custom-gradle-dist-plugin")
使用插件DSL
plugins {
id "tech.harmonysoft.oss.custom-gradle-dist-plugin" version "1.19.0"
}
使用旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "tech.harmonysoft:gradle-distribution-gradle-plugin:1.19.0"
}
}
apply plugin: "tech.harmonysoft.oss.custom-gradle-dist-plugin"