搜索Gradle插件

版本 0.1.0 (最新版)

0.1.0

创建于 2023年4月13日。

提供JSON处理管道的插件,用于Copy任务和操作

使用 插件DSL

plugins {
  id("coffee.cypher.json-processor") version "0.1.0"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("coffee.cypher:json-processor-plugin:0.1.0")
  }
}

apply(plugin = "coffee.cypher.json-processor")

使用 插件DSL

plugins {
  id "coffee.cypher.json-processor" version "0.1.0"
}

使用 遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "coffee.cypher:json-processor-plugin:0.1.0"
  }
}

apply plugin: "coffee.cypher.json-processor"

了解如何应用插件到子项目