Search Gradle plugins

Version 1.0.2 (latest)

1.0.2

Created 25 July 2024.

Generate JSON schema from annotated classes

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.theblueground.json.schema.jvm.gradle-plugin") version "1.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.theblueground:gradle-plugin:1.0.2")
      }
    }
    
    apply(plugin = "com.theblueground.json.schema.jvm.gradle-plugin")
  • Applying plugins to all subprojects .