Search Gradle plugins

Version 1.1.0 (latest)

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"

Learn how to apply plugins to subprojects