Search Gradle plugins

Version 5.1.1

5.1.1

Created 13 August 2022.

Adds a download task to Gradle that displays progress information

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.undercouch.download") version "5.1.1"
}

See also:

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