搜索 Gradle 插件

版本 2.0.0(最新版)

2.0.0

创建于2023年1月31日。

此插件允许使用 JsonPath:<new value> 字典更改 JSON 文件

使用 插件 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"

了解如何将插件应用于子项目