org.jsonschema2pojo
Owner: Joe Littlejohn
Generate Java types from JSON or JSON Schema and annotate those types for data-binding with Jackson, Gson, and more.
http://www.jsonschema2pojo.org/
Sources: https://github.com/joelittlejohn/jsonschema2pojo
Version 1.2.2 (latest)
Created 21 September 2024.
Generate Java types from JSON or JSON Schema and annotate those types for data-binding with Jackson, Gson, and more.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.jsonschema2pojo") version "1.2.2"
}
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("org.jsonschema2pojo:org.jsonschema2pojo.gradle.plugin:1.2.2") }
It can then be applied in the precompiled script plugin:plugins { id("org.jsonschema2pojo") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jsonschema2pojo:org.jsonschema2pojo.gradle.plugin:1.2.2") } } apply(plugin = "org.jsonschema2pojo")
- Applying plugins to all subprojects .