fi.linuxbox.download
Owner: Mikko Värri
This plugin provides a Download task type for Gradle. Tasks of this type can do HTTP and HTTPS downloads in parallel.
https://github.com/vmj/gradle-download-worker
Sources: https://github.com/vmj/gradle-download-worker
Version 0.6 (latest)
0.6
Created 10 December 2019.
This plugin provides a Download task type for Gradle. Tasks of this type can do HTTP and HTTPS downloads in parallel.
Using the plugins DSL:
plugins {
id("fi.linuxbox.download") version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.fi.linuxbox.gradle:gradle-download:0.6")
}
}
apply(plugin = "fi.linuxbox.download")
Using the plugins DSL:
plugins {
id "fi.linuxbox.download" version "0.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.fi.linuxbox.gradle:gradle-download:0.6"
}
}
apply plugin: "fi.linuxbox.download"