Search Gradle plugins

Version 0.0.0-SNAPSHOT

0.0.0-SNAPSHOT

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 "0.0.0-SNAPSHOT"
}

See also:

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