Search Gradle plugins

io.github.klawson88.liquiprime

Owner: Kevin

A Gradle plugin which provides the ability to perform operations on databases before Liquibase changelogs are executed on them through liquibase-gradle-plugin

https://github.com/klawson88/liquiprime

Sources: https://github.com/klawson88/liquiprime.git

Version 1.3.1 (latest)

Created 21 April 2024.

A Gradle plugin which provides the ability to perform operations on databases
before Liquibase changelogs are executed on them through liquibase-gradle-plugin

Using the plugins DSL:

plugins {
  id("io.github.klawson88.liquiprime") version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.github.klawson88:liquiprime:1.3.1")
  }
}

apply(plugin = "io.github.klawson88.liquiprime")

Using the plugins DSL:

plugins {
  id "io.github.klawson88.liquiprime" version "1.3.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.github.klawson88:liquiprime:1.3.1"
  }
}

apply plugin: "io.github.klawson88.liquiprime"

Learn how to apply plugins to subprojects