Search Gradle plugins

Version 0.1.11 (latest)

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"

Learn how to apply plugins to subprojects