Owner:
Jeff Stano
Adds generateSchemaDiagram and generateSql tasks that run com.stano.schema.gendiagram.GenDiagram and com.stano.schema.gensql.GenSQL against a schema.xml file. Each task is only registered when the corresponding com.stano:schema-diagram-generator / com.stano:schema-sql-generator dependency is present on the project's runtimeClasspath; otherwise a warning is logged and the task is skipped.
Version 0.1.14 (latest)
Created 13 August 2026.
Adds generateSchemaDiagram and generateSql tasks that run com.stano.schema.gendiagram.GenDiagram and com.stano.schema.gensql.GenSQL against a schema.xml file. Each task is only registered when the corresponding com.stano:schema-diagram-generator / com.stano:schema-sql-generator dependency is present on the project's runtimeClasspath; otherwise a warning is logged and the task is skipped.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.stano.schema") version "0.1.14"
}
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.stano.schema:com.stano.schema.gradle.plugin:0.1.14") }It can then be applied in the precompiled script plugin:plugins { id("com.stano.schema") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.stano.schema:com.stano.schema.gradle.plugin:0.1.14") } } apply(plugin = "com.stano.schema") - Applying plugins to all subprojects .