Search Gradle plugins

Version 0.2.0

Created 09 November 2022.

Generates JSON schemas from JVM types

Using the plugins DSL:

plugins {
  id("org.creekservice.schema.json") version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.creekservice:creek-json-schema-gradle-plugin:0.2.0")
  }
}

apply(plugin = "org.creekservice.schema.json")

Using the plugins DSL:

plugins {
  id "org.creekservice.schema.json" version "0.2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.creekservice:creek-json-schema-gradle-plugin:0.2.0"
  }
}

apply plugin: "org.creekservice.schema.json"

Learn how to apply plugins to subprojects