com.fizzpod.layout
Owner:
andy.j.dunn
Gradle plugin to providing configuration mechanism to create a layout.
https://github.com/boxheed/gradle-layout-plugin
Version 4.3.5
Created 22 September 2023.
Gradle plugin providing a configuration mechanism to create standardised layouts.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.fizzpod.layout") version "4.3.5"
}
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.fizzpod.layout:com.fizzpod.layout.gradle.plugin:4.3.5") }
It can then be applied in the precompiled script plugin:plugins { id("com.fizzpod.layout") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fizzpod.layout:com.fizzpod.layout.gradle.plugin:4.3.5") } } apply(plugin = "com.fizzpod.layout")
- Applying plugins to all subprojects .