org.jetbrains.gradle.liquibase
Owner: JetBrains
Run migrations from Gradle using the Liquibase runtime.
https://github.com/JetBrains/jetbrains-gradle-plugins
Sources: https://github.com/JetBrains/jetbrains-gradle-plugins.git
Version 1.3.1
Created 28 October 2021.
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.3.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("org.jetbrains.gradle.liquibase:org.jetbrains.gradle.liquibase.gradle.plugin:1.3.1") }
It can then be applied in the precompiled script plugin:plugins { id("org.jetbrains.gradle.liquibase") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.jetbrains.gradle.liquibase:org.jetbrains.gradle.liquibase.gradle.plugin:1.3.1") } } apply(plugin = "org.jetbrains.gradle.liquibase")
- Applying plugins to all subprojects .