com.gmail.maxcs1990
Owner: Maksim Ivantsou
Plugin for loading pdf templates resources into the project
Sources: https://github.com/maksim-ivantsou/templatesdownloader/tree/dev
Version 1.0 (latest)
Created 04 January 2021.
Plugin for loading pdf templates resources into the project
Add this plugin to your build using the plugins DSL:
plugins {
id("com.gmail.maxcs1990") version "1.0"
}
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("com.gmail.maxcs1990:com.gmail.maxcs1990.gradle.plugin:1.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.gmail.maxcs1990") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gmail.maxcs1990:com.gmail.maxcs1990.gradle.plugin:1.0") } } apply(plugin = "com.gmail.maxcs1990")
- Applying plugins to all subprojects .