io.github.denis-markushin.schemaspy-plugin
Owner: Denis Markushin
The plugin to generate docs using Testcontainers and SchemaSpy
https://github.com/denis-markushin/schemaspy-gradle-plugin
Sources: https://github.com/denis-markushin/schemaspy-gradle-plugin
Version 0.3.0 (latest)
0.3.0
Created 26 April 2024.
The plugin to generate docs using Testcontainers and SchemaSpy
Using the plugins DSL:
plugins {
id("io.github.denis-markushin.schemaspy-plugin") version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.denis-markushin.gradle.schemaspy:plugin:0.3.0")
}
}
apply(plugin = "io.github.denis-markushin.schemaspy-plugin")
Using the plugins DSL:
plugins {
id "io.github.denis-markushin.schemaspy-plugin" version "0.3.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.denis-markushin.gradle.schemaspy:plugin:0.3.0"
}
}
apply plugin: "io.github.denis-markushin.schemaspy-plugin"