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)
1.0-SNAPSHOT
Created 04 January 2021.
download file from url to destination file
Using the plugins DSL:
plugins {
id("ru.clevertec.file-downloader") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.ru.clevertec:buildSrc:1.0-SNAPSHOT")
}
}
apply(plugin = "ru.clevertec.file-downloader")
Using the plugins DSL:
plugins {
id "ru.clevertec.file-downloader" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.ru.clevertec:buildSrc:1.0-SNAPSHOT"
}
}
apply plugin: "ru.clevertec.file-downloader"