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 0.8.20181101124911
0.8.20181101124911
Created 01 November 2018.
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 "0.8.20181101124911"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.github.rmee:jpa-schema-gen:0.8.20181101124911")
}
}
apply(plugin = "com.github.rmee.jpa-schema-gen")
Using the plugins DSL:
plugins {
id "com.github.rmee.jpa-schema-gen" version "0.8.20181101124911"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.github.rmee:jpa-schema-gen:0.8.20181101124911"
}
}
apply plugin: "com.github.rmee.jpa-schema-gen"