Search Gradle plugins

Version 1.0.20200215081252

1.0.20200215081252

Created 15 February 2020.

Genernate schema creation and migration scripts from JPA entities for Flyway and Liquibase.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.rmee.jpa-schema-gen") version "1.0.20200215081252"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.rmee:jpa-schema-gen:1.0.20200215081252")
      }
    }
    
    apply(plugin = "com.github.rmee.jpa-schema-gen")
  • Applying plugins to all subprojects .