io.mtso.jsonschema.prepare
Owner: Matthew Tso
Prepares JSON Schemas by de-referencing local files
https://github.com/mtso/json-schema-plugins
Sources: https://github.com/mtso/json-schema-plugins.git
Version 1.1.0 (latest)
1.1.0
Created 11 January 2023.
Prepares JSON Schemas by de-referencing local files
Using the plugins DSL:
plugins {
id("io.mtso.jsonschema.prepare") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.mtso:jsonschema:1.1.0")
}
}
apply(plugin = "io.mtso.jsonschema.prepare")
Using the plugins DSL:
plugins {
id "io.mtso.jsonschema.prepare" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.mtso:jsonschema:1.1.0"
}
}
apply plugin: "io.mtso.jsonschema.prepare"