net.robyf.dbpatcher
Owner: Roberto Fasciolo
A Gradle plugin for the dbpatcher database patching tool.
https://github.com/robyf/gradle-dbpatcher-plugin
Sources: https://github.com/robyf/gradle-dbpatcher-plugin.git
Version 1.0.1
1.0.1
Created 28 September 2016.
A Gradle plugin for the dbpatcher database patching tool.
Using the plugins DSL:
plugins {
id("net.robyf.dbpatcher") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.net.robyf:gradle-dbpatcher-plugin:1.0.1")
}
}
apply(plugin = "net.robyf.dbpatcher")
Using the plugins DSL:
plugins {
id "net.robyf.dbpatcher" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.robyf:gradle-dbpatcher-plugin:1.0.1"
}
}
apply plugin: "net.robyf.dbpatcher"