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.6.0-RC.5 (latest)
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:
-
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.6.0-RC.5") }
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.6.0-RC.5") } } apply(plugin = "org.jetbrains.gradle.liquibase")
- Applying plugins to all subprojects .