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

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.io.ankburov.gradle:dbupdate:1.0-SNAPSHOT")
  }
}

apply(plugin = "io.ankburov.gradle.dbupdateplugin")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.io.ankburov.gradle:dbupdate:1.0-SNAPSHOT"
  }
}

apply plugin: "io.ankburov.gradle.dbupdateplugin"

Learn how to apply plugins to subprojects