io.github.romanshvets.postgresql-migrations
所有者: Roman Shvets
Gradle PostgreSQL 数据库迁移插件
https://github.com/romanshvets/postgresql-migrations
源代码:https://github.com/romanshvets/postgresql-migrations
使用 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"