Search Gradle plugins

com.lv.dbdeploy

Gradle plugin for the lightweight dbdeploy database change management tool.

https://github.com/Liverpool-Victoria/gradle-dbdeploy-plugin

Version 1.2

Created 01 April 2015.

Gradle plugin for the lightweight dbdeploy database change management tool.

Using the plugins DSL:

plugins {
  id("com.lv.dbdeploy") version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.lv.plugins:gradle-dbdeploy-plugin:1.2")
  }
}

apply(plugin = "com.lv.dbdeploy")

Using the plugins DSL:

plugins {
  id "com.lv.dbdeploy" version "1.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.lv.plugins:gradle-dbdeploy-plugin:1.2"
  }
}

apply plugin: "com.lv.dbdeploy"

Learn how to apply plugins to subprojects