io.datapith.jayOverlay
Owner: DataPith
Gradle plugin to apply overlay to JSON and YAML files
https://github.com/datapith/jayOverlay
Sources: https://github.com/datapith/jayOverlay
Version 0.1.11 (latest)
Created 05 October 2023.
Gradle plugin to apply overlay to JSON and YAML files
Add this plugin to your build using the plugins DSL:
plugins {
id("io.datapith.jayOverlay") version "0.1.11"
}
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("io.datapith.jayOverlay:io.datapith.jayOverlay.gradle.plugin:0.1.11") }
It can then be applied in the precompiled script plugin:plugins { id("io.datapith.jayOverlay") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.datapith.jayOverlay:io.datapith.jayOverlay.gradle.plugin:0.1.11") } } apply(plugin = "io.datapith.jayOverlay")
- Applying plugins to all subprojects .