net.fornwall.download
Owner: Fredrik Fornwall
Plug-in providing a download task to download files and verify against checksums
https://github.com/fornwall/download
Sources: https://github.com/fornwall/download.git
Version 0.13 (latest)
0.13
Created 17 October 2019.
Plug-in providing a download task to download files and verify against checksums
Using the plugins DSL:
plugins {
id("net.fornwall.download") version "0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.fornwall:download:0.13")
}
}
apply(plugin = "net.fornwall.download")
Using the plugins DSL:
plugins {
id "net.fornwall.download" version "0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.fornwall:download:0.13"
}
}
apply plugin: "net.fornwall.download"