ru.clevertec.file-downloader
Owner: Pavel Turski
download file from url to destination file
Sources: https://github.com/gitbic/gradle_download_template_plugin
Version 1.0-SNAPSHOT (latest)
Created 04 January 2021.
download file from url to destination file
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.clevertec.file-downloader") version "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("ru.clevertec.file-downloader:ru.clevertec.file-downloader.gradle.plugin:1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("ru.clevertec.file-downloader") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.clevertec.file-downloader:ru.clevertec.file-downloader.gradle.plugin:1.0-SNAPSHOT") } } apply(plugin = "ru.clevertec.file-downloader")
- Applying plugins to all subprojects .