搜索 Gradle 插件

版本 1.0.6 (最新版)

1.0.6

创建日期:2023年9月27日。

Gradle PostgreSQL 数据库迁移插件

使用 plugins DSL

plugins {
  id("io.github.romanshvets.postgresql-migrations") version "1.0.6"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("io.github.romanshvets:postgresql-migrations:1.0.6")
  }
}

apply(plugin = "io.github.romanshvets.postgresql-migrations")

使用 plugins DSL

plugins {
  id "io.github.romanshvets.postgresql-migrations" version "1.0.6"
}

使用 旧版插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "io.github.romanshvets:postgresql-migrations:1.0.6"
  }
}

apply plugin: "io.github.romanshvets.postgresql-migrations"

学习如何将插件应用于子项目