Search Gradle plugins

jp.ntsk.room-schema-docs

Owner: ntsk

A Gradle plugin to automatically generate Entity-Relationship (ER) diagrams from Android Room database schema JSON files in Mermaid format.

https://github.com/ntsk/room-schema-docs-gradle-plugin

Sources: https://github.com/ntsk/room-schema-docs-gradle-plugin

Version 1.0.0 (latest)

Created 17 December 2024.

A Gradle plugin to automatically generate Entity-Relationship (ER) diagrams from Android Room database schema JSON files in Mermaid format.

Add this plugin to your build using the plugins DSL:

plugins {
  id("jp.ntsk.room-schema-docs") version "1.0.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("jp.ntsk.room-schema-docs:jp.ntsk.room-schema-docs.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("jp.ntsk.room-schema-docs")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("jp.ntsk.room-schema-docs:jp.ntsk.room-schema-docs.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "jp.ntsk.room-schema-docs")
  • Applying plugins to all subprojects .