kante.goose.migration
Owner: M Kante
A database migration plugin for Gradle. This was inspired from Laravel artisan migration tool.
https://github.com/mkante/Goose
Sources: https://github.com/mkante/Goose
Version 1.2-RELEASE (latest)
Created 20 April 2017.
A database migration plugin for Gradle. This was inspired from Laravel artisan migration tool.
Add this plugin to your build using the plugins DSL:
plugins {
id("kante.goose.migration") version "1.2-RELEASE"
}
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("kante.goose.migration:kante.goose.migration.gradle.plugin:1.2-RELEASE") }
It can then be applied in the precompiled script plugin:plugins { id("kante.goose.migration") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("kante.goose.migration:kante.goose.migration.gradle.plugin:1.2-RELEASE") } } apply(plugin = "kante.goose.migration")
- Applying plugins to all subprojects .