Skip to content
This repository has been archived by the owner on Oct 4, 2022. It is now read-only.

Latest commit

 

History

History
16 lines (13 loc) · 317 Bytes

File metadata and controls

16 lines (13 loc) · 317 Bytes

json-schema-generator-gradle-plugin

Gradle plugin to generate JSON schema files.

Sample Usage

jsonSchema {
    jsonSchemaDescriptors {
        create("config") {
            title.set("config")
            sourceFile(file("mythicdrops-plugin/src/main/resources/config.yml"))
        }
    }
}