com.github.sghill.distribution-sha
所有者: Steve Hill
在运行包装任务时自动发现分布的sha256sum
https://github.com/sghill/distribution-sha-plugin
来源: https://github.com/sghill/distribution-sha-plugin
使用 插件 DSL
plugins {
id("com.github.sghill.distribution-sha") version "0.4.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("com.github.sghill.gradle:distribution-sha-plugin:0.4.0")
}
}
apply(plugin = "com.github.sghill.distribution-sha")
使用 插件 DSL
plugins {
id "com.github.sghill.distribution-sha" version "0.4.0"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "com.github.sghill.gradle:distribution-sha-plugin:0.4.0"
}
}
apply plugin: "com.github.sghill.distribution-sha"