Search Gradle plugins

Version 3.1.3 (latest)

3.1.3

Created 28 July 2016.

Adds a download task to Gradle that displays progress information

Add this plugin to your build using the plugins DSL:

plugins {
  id("pw.prok.download") version "3.1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("pw.prok:download:3.1.3")
      }
    }
    
    apply(plugin = "pw.prok.download")
  • Applying plugins to all subprojects .