Skip to content

Commit

Permalink
Merge pull request #22468 from gsmet/flyway-mysql-doc
Browse files Browse the repository at this point in the history
Document the need for flyway-mysql
  • Loading branch information
geoand authored Dec 22, 2021
2 parents a6d39ed + 9dd5096 commit 175b973
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/src/main/asciidoc/flyway.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
----
<dependencies>
Expand All @@ -41,6 +43,12 @@ In your `pom.xml`, add the following dependencies:
<artifactId>flyway-sqlserver</artifactId>
</dependency>
<!-- Flyway MariaDB/MySQL specific dependencies -->
<dependency>
<groupId>org.flywaydb</groupId>
<artifactId>flyway-mariadb</artifactId>
</dependency>
<!-- JDBC driver dependencies -->
<dependency>
<groupId>io.quarkus</groupId>
Expand Down

0 comments on commit 175b973

Please sign in to comment.