com.michaelschlies.gradle.jsonschema-generator
Owner: Michael Schlies
A simple plugin to selectively generate jsonschema files to compiled jvm classes
https://github.com/michaelschlies/jsonschema-gradle
Sources: https://github.com/michaelschlies/jsonschema-gradle
Version 1.1.11 (latest)
1.1.11
Created 27 May 2020.
A simple plugin to selectively generate jsonschema files to compiled jvm classes
Using the plugins DSL:
plugins {
id("com.michaelschlies.gradle.jsonschema-generator") version "1.1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.michaelschlies.gradle:jsonschema-generator:1.1.11")
}
}
apply(plugin = "com.michaelschlies.gradle.jsonschema-generator")
Using the plugins DSL:
plugins {
id "com.michaelschlies.gradle.jsonschema-generator" version "1.1.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.michaelschlies.gradle:jsonschema-generator:1.1.11"
}
}
apply plugin: "com.michaelschlies.gradle.jsonschema-generator"