Search Gradle plugins

io.github.klawson88.liquigen

Owner: Kevin

A plugin which provides the ability to generate Liquibase changelogs with standardized name and content structure

https://github.com/klawson88/liquigen

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

Version 1.2.4 (latest)

Created 03 December 2023.

A plugin which provides the ability to generate Liquibase
changelogs with standardized name and content structure

Using the plugins DSL:

plugins {
  id("io.github.klawson88.liquigen") version "1.2.4"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "io.github.klawson88.liquigen" version "1.2.4"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects