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.9
0.1.9
Created 27 September 2023.
Gradle plugin to apply overlay to JSON and YAML files
Using the plugins DSL:
plugins {
id("io.datapith.jayOverlay") version "0.1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.datapith.jayOverlay:jayOverlay-gradle-plugin:0.1.9")
}
}
apply(plugin = "io.datapith.jayOverlay")
Using the plugins DSL:
plugins {
id "io.datapith.jayOverlay" version "0.1.9"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.datapith.jayOverlay:jayOverlay-gradle-plugin:0.1.9"
}
}
apply plugin: "io.datapith.jayOverlay"