搜索Gradle插件

版本 1.1.20200614081240 (最新)

1.1.20200614081240

创建于2020年6月14日。

从JPA实体生成Flyway和Liquibase的架构创建和迁移脚本。

使用 plugins DSL

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

使用 旧插件应用

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

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

使用 plugins DSL

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

使用 旧插件应用

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

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

了解如何将插件应用于子项目