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.
Version 0.6 (latest)
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.
Add this plugin to your build using the plugins DSL:
plugins {
id("fi.linuxbox.download") version "0.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts):dependencies { implementation("fi.linuxbox.download:fi.linuxbox.download.gradle.plugin:0.6") }It can then be applied in the precompiled script plugin:plugins { id("fi.linuxbox.download") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fi.linuxbox.download:fi.linuxbox.download.gradle.plugin:0.6") } } apply(plugin = "fi.linuxbox.download") - Applying plugins to all subprojects .