Search Gradle plugins

Version 0.1.0 (latest)

0.1.0

Created 13 April 2023.

Plugin providing JSON processing pipelines to Copy tasks and actions

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("coffee.cypher:json-processor-plugin:0.1.0")
      }
    }
    
    apply(plugin = "coffee.cypher.json-processor")
  • Applying plugins to all subprojects .