org.gradle.crypto.checksum
Owner: Gradle
Create checksums for files in your build.
https://github.com/gradle/gradle-checksum
Sources: https://github.com/gradle/gradle-checksum
Version 1.0.2
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"