Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 278 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 278 Bytes

json2yaml

Gradle plugin for JSON to YAML tranformation

Step 1

Apply the plugin

plugins {
    id('json2yaml')
}

Step 2

Set input and output file

json2yaml.inputFile = project.file('sample.json')
json2yaml.outputFile = project.file('output.yaml')