digital.guimauve.zodable
Owner:
Nathan Fallet
Generate zod schemas from Kotlin data classes.
https://github.com/guimauvedigital/zodable
Sources: https://github.com/guimauvedigital/zodable.git
Version 1.3.0 (latest)
Created 30 March 2025.
Generate zod schemas from Kotlin data classes.
Add this plugin to your build using the plugins DSL:
plugins {
id("digital.guimauve.zodable") version "1.3.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("digital.guimauve.zodable:digital.guimauve.zodable.gradle.plugin:1.3.0") }
It can then be applied in the precompiled script plugin:plugins { id("digital.guimauve.zodable") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("digital.guimauve.zodable:digital.guimauve.zodable.gradle.plugin:1.3.0") } } apply(plugin = "digital.guimauve.zodable")
- Applying plugins to all subprojects .