Search Gradle plugins

Version 0.4.0 (latest)

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"

Learn how to apply plugins to subprojects