Search Gradle plugins

Version 1.0.4 (latest)

1.0.4

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.robyf:gradle-dbpatcher-plugin:1.0.4")
      }
    }
    
    apply(plugin = "net.robyf.dbpatcher")
  • Applying plugins to all subprojects .