Search Gradle plugins

Version 1.0.2

Created 08 September 2017.

Create checksums for files in your build.

Using the plugins DSL:

plugins {
  id("org.gradle.crypto.checksum") version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.gradle.crypto:checksum:1.0.2")
  }
}

apply(plugin = "org.gradle.crypto.checksum")

Using the plugins DSL:

plugins {
  id "org.gradle.crypto.checksum" version "1.0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.gradle.crypto:checksum:1.0.2"
  }
}

apply plugin: "org.gradle.crypto.checksum"

Learn how to apply plugins to subprojects