io.ankburov.gradle.dbupdateplugin
Owner: Eugeny
This plugin incrementally updates any relational databases in simple and lightweight way
https://github.com/AnkBurov/database-update-plugin
Sources: https://github.com/AnkBurov/database-update-plugin
Version 1.0 (latest)
1.0
Created 30 June 2017.
This plugin incrementally updates any relational databases in simple and lightweight way
Using the plugins DSL:
plugins {
id("io.ankburov.gradle.dbupdateplugin") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.io.ankburov.gradle:dbupdate:1.0")
}
}
apply(plugin = "io.ankburov.gradle.dbupdateplugin")
Using the plugins DSL:
plugins {
id "io.ankburov.gradle.dbupdateplugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.io.ankburov.gradle:dbupdate:1.0"
}
}
apply plugin: "io.ankburov.gradle.dbupdateplugin"