Search Gradle plugins

fi.linuxbox.download

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.

Add this plugin to your build using the plugins DSL:

plugins {
  id("fi.linuxbox.download") version "0.6"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.fi.linuxbox.gradle:gradle-download:0.6")
      }
    }
    
    apply(plugin = "fi.linuxbox.download")
  • Applying plugins to all subprojects .