de.undercouch.download
Owner: Michel Krämer
Adds a download task to Gradle that displays progress information
https://github.com/michel-kraemer/gradle-download-task
Version 5.6.0 (latest)
5.6.0
Created 29 February 2024.
Adds a download task to Gradle that displays progress information
Using the plugins DSL:
plugins {
id("de.undercouch.download") version "5.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.undercouch:gradle-download-task:5.6.0")
}
}
apply(plugin = "de.undercouch.download")
Using the plugins DSL:
plugins {
id "de.undercouch.download" version "5.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.undercouch:gradle-download-task:5.6.0"
}
}
apply plugin: "de.undercouch.download"