io.github.cryosleeper.gradle.json-modification
所有者: Cryosleeper
此插件允许使用 JsonPath:<new value> 字典更改 JSON 文件
https://github.com/Cryosleeper/JSON-Modification-plugin
来源: https://github.com/Cryosleeper/JSON-Modification-plugin
使用 插件 DSL
plugins {
id("io.github.cryosleeper.gradle.json-modification") version "2.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("io.github.cryosleeper.gradle:json-modification:2.0.0")
}
}
apply(plugin = "io.github.cryosleeper.gradle.json-modification")
使用 插件 DSL
plugins {
id "io.github.cryosleeper.gradle.json-modification" version "2.0.0"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "io.github.cryosleeper.gradle:json-modification:2.0.0"
}
}
apply plugin: "io.github.cryosleeper.gradle.json-modification"