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.4 (latest)
1.0.4
Created 01 November 2021.
A Gradle plugin for the dbpatcher database patching tool.
Using the plugins DSL:
plugins {
id("net.robyf.dbpatcher") version "1.0.4"
}
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.4")
}
}
apply(plugin = "net.robyf.dbpatcher")
Using the plugins DSL:
plugins {
id "net.robyf.dbpatcher" version "1.0.4"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.net.robyf:gradle-dbpatcher-plugin:1.0.4"
}
}
apply plugin: "net.robyf.dbpatcher"