com.ascert.open.json2yaml
Owner: Rob Walker
Plugin for JSON file convertion to YAML format, and the reverse
https://github.com/ascertrobw/json2yaml
Sources: https://github.com/ascertrobw/json2yaml
Version 1.1.1 (latest)
1.1.1
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"