Search Gradle plugins

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-SNAPSHOT

1.0-SNAPSHOT

Created 30 June 2017.

This plugin incrementally updates any relational databases in simple and lightweight way

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.ankburov.gradle.dbupdateplugin") version "1.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.io.ankburov.gradle:dbupdate:1.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "io.ankburov.gradle.dbupdateplugin")
  • Applying plugins to all subprojects .