io.datapith.jayOverlay
所有者: DataPith
Gradle插件,用于应用叠加到JSON和YAML文件
https://github.com/datapith/jayOverlay
来源: https://github.com/datapith/jayOverlay
使用 plugins DSL
plugins {
id("io.datapith.jayOverlay") version "0.1.11"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.datapith.jayOverlay:jayOverlay-gradle-plugin:0.1.11")
}
}
apply(plugin = "io.datapith.jayOverlay")
使用 plugins DSL
plugins {
id "io.datapith.jayOverlay" version "0.1.11"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.datapith.jayOverlay:jayOverlay-gradle-plugin:0.1.11"
}
}
apply plugin: "io.datapith.jayOverlay"