sh.dass.theirsroom
CC-compatible
Owner:
dassshtech
Generates ER-diagram visualizations (HTML, Mermaid, Graphviz DOT, PlantUML) from Room database schema JSON exports, with automatic schema location detection.
Version 0.1.0
Created 16 July 2026.
Generates ER-diagram visualizations (HTML, Mermaid, Graphviz DOT, PlantUML) from Room database schema JSON exports, with automatic schema location detection.
Add this plugin to your build using the plugins DSL:
plugins {
id("sh.dass.theirsroom") version "0.1.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("sh.dass.theirsroom:sh.dass.theirsroom.gradle.plugin:0.1.0") }It can then be applied in the precompiled script plugin:plugins { id("sh.dass.theirsroom") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("sh.dass.theirsroom:sh.dass.theirsroom.gradle.plugin:0.1.0") } } apply(plugin = "sh.dass.theirsroom") - Applying plugins to all subprojects .