Search Gradle plugins

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.0-SNAPSHOT

Created 13 September 2016.

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.0-SNAPSHOT"
}

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.0-SNAPSHOT")
    }
    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.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "kante.goose.migration")
  • Applying plugins to all subprojects .