pw.prok.download
Owner: Sergey Shatunov
Adds a download task to Gradle that displays progress information
https://gitlab.prok.pw/Prototik/gradle-download
Sources: https://github.com/Prototik/gradle-download-plugin
Version 3.1.3 (latest)
3.1.3
Created 28 July 2016.
Adds a download task to Gradle that displays progress information
Using the plugins DSL:
plugins {
id("pw.prok.download") version "3.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("pw.prok:download:3.1.3")
}
}
apply(plugin = "pw.prok.download")
Using the plugins DSL:
plugins {
id "pw.prok.download" version "3.1.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "pw.prok:download:3.1.3"
}
}
apply plugin: "pw.prok.download"