ru.systematica-consulting.mz-api-gen-plugin
Owner: Ivan
Plugin to generate JSON schema from xsd and xslt
https://github.com/systematica-consulting/mz-api-gen-plugin
Sources: https://github.com/systematica-consulting/mz-api-gen-plugin
Version 1.0.1 (latest)
Created 15 October 2024.
Plugin to generate JSON schema from xsd and xslt
Add this plugin to your build using the plugins DSL:
plugins {
id("ru.systematica-consulting.mz-api-gen-plugin") version "1.0.1"
}
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("ru.systematica-consulting.mz-api-gen-plugin:ru.systematica-consulting.mz-api-gen-plugin.gradle.plugin:1.0.1") }
It can then be applied in the precompiled script plugin:plugins { id("ru.systematica-consulting.mz-api-gen-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.systematica-consulting.mz-api-gen-plugin:ru.systematica-consulting.mz-api-gen-plugin.gradle.plugin:1.0.1") } } apply(plugin = "ru.systematica-consulting.mz-api-gen-plugin")
- Applying plugins to all subprojects .