com.github.alexmazharouski
Owner: Alexander Mazharoiski
Download the pdf template from the specified path
https://github.com/alexmazharouski/downloader-plugin
Sources: https://github.com/alexmazharouski/downloader-plugin.git
Version 1.0-SNAPSHOT (latest)
1.0-SNAPSHOT
Created 10 January 2021.
Download the pdf template from the specified path
Using the plugins DSL:
plugins {
id("com.github.alexmazharouski") version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.alexmazharouski:downloader:1.0-SNAPSHOT")
}
}
apply(plugin = "com.github.alexmazharouski")
Using the plugins DSL:
plugins {
id "com.github.alexmazharouski" version "1.0-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.alexmazharouski:downloader:1.0-SNAPSHOT"
}
}
apply plugin: "com.github.alexmazharouski"