coffee.cypher.json-processor
Owner: Cypher121
Plugin providing JSON processing pipelines to Copy tasks and actions
https://github.com/Cypher121/json-processor-plugin
Sources: https://github.com/Cypher121/json-processor-plugin.git
Version 0.1.0 (latest)
0.1.0
Created 13 April 2023.
Plugin providing JSON processing pipelines to Copy tasks and actions
Using the plugins DSL:
plugins {
id("coffee.cypher.json-processor") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("coffee.cypher:json-processor-plugin:0.1.0")
}
}
apply(plugin = "coffee.cypher.json-processor")
Using the plugins DSL:
plugins {
id "coffee.cypher.json-processor" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "coffee.cypher:json-processor-plugin:0.1.0"
}
}
apply plugin: "coffee.cypher.json-processor"