Search Gradle plugins

Version 1.6.0-RC.5 (latest)

1.6.0-RC.5

Created 20 February 2023.

Run migrations from Gradle using the Liquibase runtime.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.jetbrains.gradle.liquibase") version "1.6.0-RC.5"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.jetbrains.gradle:package-search-gradle-plugins:1.6.0-RC.5")
      }
    }
    
    apply(plugin = "org.jetbrains.gradle.liquibase")
  • Applying plugins to all subprojects .