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.0-SNAPSHOT
Created 21 June 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.0-SNAPSHOT"
}
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("pw.prok.download:pw.prok.download.gradle.plugin:3.1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("pw.prok.download") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("pw.prok.download:pw.prok.download.gradle.plugin:3.1.0-SNAPSHOT") } } apply(plugin = "pw.prok.download")
- Applying plugins to all subprojects .