Search Gradle plugins

Version 1.1.20200614081240 (latest)

Created 14 June 2020.

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.1.20200614081240"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.rmee:jpa-schema-gen:1.1.20200614081240")
  }
}

apply(plugin = "com.github.rmee.jpa-schema-gen")

Using the plugins DSL:

plugins {
  id "com.github.rmee.jpa-schema-gen" version "1.1.20200614081240"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.rmee:jpa-schema-gen:1.1.20200614081240"
  }
}

apply plugin: "com.github.rmee.jpa-schema-gen"

Learn how to apply plugins to subprojects