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)
Created 01 November 2021.
A Gradle plugin for the dbpatcher database patching tool.
Add this plugin to your build using the plugins DSL:
plugins {
id("net.robyf.dbpatcher") version "1.0.4"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("net.robyf.dbpatcher:net.robyf.dbpatcher.gradle.plugin:1.0.4") }
It can then be applied in the precompiled script plugin:plugins { id("net.robyf.dbpatcher") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("net.robyf.dbpatcher:net.robyf.dbpatcher.gradle.plugin:1.0.4") } } apply(plugin = "net.robyf.dbpatcher")
- Applying plugins to all subprojects .