net.codebuilders.lazybones-templates
Owner: Carl Marcum
A Gradle plugin to aid the packaging and distribution of Lazybones templates.
https://github.com/cbmarcum/skeletal-gradle-plugin
Sources: https://github.com/cbmarcum/skeletor.git
Version 1.7.1 (latest)
Created 04 February 2023.
A Gradle plugin to aid the packaging and distribution of Lazybones templates.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.codebuilders.lazybones-templates") version "1.7.1"
}
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("net.codebuilders.lazybones-templates:net.codebuilders.lazybones-templates.gradle.plugin:1.7.1") }
It can then be applied in the precompiled script plugin:plugins { id("net.codebuilders.lazybones-templates") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.codebuilders.lazybones-templates:net.codebuilders.lazybones-templates.gradle.plugin:1.7.1") } } apply(plugin = "net.codebuilders.lazybones-templates")
- Applying plugins to all subprojects .