com.github.rmee.jpa-schema-gen
Owner: hallowelt
Genernate schema creation and migration scripts from JPA entities for Flyway and Liquibase.
https://github.com/rmee/gradle-plugins/tree/master/jpa-schema-gen
Sources: https://github.com/rmee/gradle-plugins/tree/master/jpa-schema-gen
Version 1.0.20190725142159
1.0.20190725142159
Created 26 July 2019.
Genernate schema creation and migration scripts from JPA entities for Flyway and Liquibase.
Using the plugins DSL:
plugins {
id("com.github.rmee.jpa-schema-gen") version "1.0.20190725142159"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rmee:jpa-schema-gen:1.0.20190725142159")
}
}
apply(plugin = "com.github.rmee.jpa-schema-gen")
Using the plugins DSL:
plugins {
id "com.github.rmee.jpa-schema-gen" version "1.0.20190725142159"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rmee:jpa-schema-gen:1.0.20190725142159"
}
}
apply plugin: "com.github.rmee.jpa-schema-gen"