com.michaelschlies.gradle.jsonschema-generator
Owner: Michael Schlies
A simple plugin to selectively generate jsonschema files to compiled jvm classes
https://github.com/michaelschlies/jsonschema-gradle
Sources: https://github.com/michaelschlies/jsonschema-gradle
Version 1.1.11 (latest)
Created 27 May 2020.
A simple plugin to selectively generate jsonschema files to compiled jvm classes
Add this plugin to your build using the plugins DSL:
plugins {
id("com.michaelschlies.gradle.jsonschema-generator") version "1.1.11"
}
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("com.michaelschlies.gradle.jsonschema-generator:com.michaelschlies.gradle.jsonschema-generator.gradle.plugin:1.1.11") }
It can then be applied in the precompiled script plugin:plugins { id("com.michaelschlies.gradle.jsonschema-generator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.michaelschlies.gradle.jsonschema-generator:com.michaelschlies.gradle.jsonschema-generator.gradle.plugin:1.1.11") } } apply(plugin = "com.michaelschlies.gradle.jsonschema-generator")
- Applying plugins to all subprojects .