com.matsuyoido.er
Owner:
kanro
yaml -> DDL | DDL -> Entity Relationship Diagram
https://github.com/matsuyoido/gradle-ER-plugin
Sources: https://github.com/matsuyoido/gradle-ER-plugin
Version 1.1.0 (latest)
Created 06 April 2021.
yaml -> DDL | DDL -> Entity Relationship Diagram
Using the plugins DSL:
plugins {
id("com.matsuyoido.er") version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.matsuyoido:er-plugin:1.1.0")
}
}
apply(plugin = "com.matsuyoido.er")
Using the plugins DSL:
plugins {
id "com.matsuyoido.er" version "1.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.matsuyoido:er-plugin:1.1.0"
}
}
apply plugin: "com.matsuyoido.er"