dev.hsbrysk.jsonschema-generator
Owner:
Ryosuke Hasebe
Java JSON Schema Generator – creating JSON Schema (Draft 6, Draft 7, Draft 2019-09, or Draft 2020-12) from Java classes
https://github.com/be-hase/jsonschema-generator-tools
Sources: https://github.com/be-hase/jsonschema-generator-tools
Version 1.0.0 (latest)
Created 28 April 2025.
Java JSON Schema Generator – creating JSON Schema (Draft 6, Draft 7, Draft 2019-09, or Draft 2020-12) from Java classes
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.hsbrysk.jsonschema-generator") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("dev.hsbrysk.jsonschema-generator:dev.hsbrysk.jsonschema-generator.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.hsbrysk.jsonschema-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.hsbrysk.jsonschema-generator:dev.hsbrysk.jsonschema-generator.gradle.plugin:1.0.0") } } apply(plugin = "dev.hsbrysk.jsonschema-generator")
- Applying plugins to all subprojects .