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