com.github.sghill.distribution-sha
Owner: Steve Hill
Automatically discover the distribution's sha256sum when running wrapper task
https://github.com/sghill/distribution-sha-plugin
Sources: https://github.com/sghill/distribution-sha-plugin
Version 0.4.0 (latest)
0.4.0
Created 21 April 2019.
Automatically discover the distribution's sha256sum when running wrapper task
Using the plugins DSL:
plugins {
id("com.github.sghill.distribution-sha") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.sghill.gradle:distribution-sha-plugin:0.4.0")
}
}
apply(plugin = "com.github.sghill.distribution-sha")
Using the plugins DSL:
plugins {
id "com.github.sghill.distribution-sha" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.sghill.gradle:distribution-sha-plugin:0.4.0"
}
}
apply plugin: "com.github.sghill.distribution-sha"