org.flywaydb.enterprise.flyway
Owner: Flyway
Flyway by Redgate is an open-source database migration tool. It strongly favors simplicity and convention over configuration. It is simple, focused and powerful. It runs on Windows, Mac OSX and Linux, Java and Android. It is based around just 6 basic commands: Migrate, Clean, Info, Validate, Baseline and Repair. Migrations can be written in SQL (database-specific syntax (such as PL/SQL, T-SQL, ...) is supported) or Java (for advanced data transformations or dealing with LOBs). It has a Command-line client. If you are on the JVM, we recommend using the Java API (also works on Android) for migrating the database on application startup. Alternatively, you can also use the Maven plugin, Gradle plugin, SBT plugin or the Ant tasks. And if that not enough, there are plugins available for Spring Boot, Dropwizard, Grails, Play, Griffon, Grunt, Ninja and more! Supported databases are Oracle, SQL Server, SQL Azure, DB2, DB2 z/OS, MySQL (including Amazon RDS), MariaDB, Google Cloud SQL, PostgreSQL (including Amazon RDS and Heroku), Redshift, Vertica, H2, Hsql Derby, SQLite and solidDB. More info: https://flywaydb.org
Sources: https://github.com/flyway/flyway
Version 8.0.0-beta1
Created 14 September 2021.
Add this plugin to your build using the plugins DSL:
plugins {
id("org.flywaydb.enterprise.flyway") version "8.0.0-beta1"
}
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.flywaydb.enterprise.flyway:org.flywaydb.enterprise.flyway.gradle.plugin:8.0.0-beta1") }
It can then be applied in the precompiled script plugin:plugins { id("org.flywaydb.enterprise.flyway") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("org.flywaydb.enterprise.flyway:org.flywaydb.enterprise.flyway.gradle.plugin:8.0.0-beta1") } } apply(plugin = "org.flywaydb.enterprise.flyway")
- Applying plugins to all subprojects .