Search Gradle plugins

Version 1.1.1 (latest)

Created 23 December 2022.

Plugin for JSON file convertion to YAML format, and the reverse

Using the plugins DSL:

plugins {
  id("com.ascert.open.json2yaml") version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.ascert.open:json2yaml:1.1.1")
  }
}

apply(plugin = "com.ascert.open.json2yaml")

Using the plugins DSL:

plugins {
  id "com.ascert.open.json2yaml" version "1.1.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.ascert.open:json2yaml:1.1.1"
  }
}

apply plugin: "com.ascert.open.json2yaml"

Learn how to apply plugins to subprojects