From 9dd5096f7e8c7a556b9348b59518c754cc263052 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Wed, 22 Dec 2021 11:34:01 +0100 Subject: [PATCH] Document the need for flyway-mysql Fixes #22400 --- docs/src/main/asciidoc/flyway.adoc | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/src/main/asciidoc/flyway.adoc b/docs/src/main/asciidoc/flyway.adoc index 15957d2b656fe..f3cddde234926 100644 --- a/docs/src/main/asciidoc/flyway.adoc +++ b/docs/src/main/asciidoc/flyway.adoc @@ -25,7 +25,9 @@ In your `pom.xml`, add the following dependencies: * the Flyway extension * your JDBC driver extension (`quarkus-jdbc-postgresql`, `quarkus-jdbc-h2`, `quarkus-jdbc-mariadb`, ...) +* the MariaDB/MySQL support is now in a separate dependency, MariaDB/MySQL users need to add the `flyway-mysql` dependency from now on. * the SQL Server support is now in a separate dependency, SQL Server users need to add the `flyway-sqlserver` dependency from now on. + [source,xml] ---- @@ -41,6 +43,12 @@ In your `pom.xml`, add the following dependencies: flyway-sqlserver + + + org.flywaydb + flyway-mariadb + + io.quarkus