Skip to content

Commit 1a1cb85

Browse files
committed
Dependency addition needed by Flyway 10
1 parent 3b590aa commit 1a1cb85

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

011-quarkus-panache-rest-flyway/pom.xml

+4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
<groupId>io.quarkus</groupId>
2121
<artifactId>quarkus-flyway</artifactId>
2222
</dependency>
23+
<dependency>
24+
<groupId>org.flywaydb</groupId>
25+
<artifactId>flyway-database-postgresql</artifactId>
26+
</dependency>
2327
<dependency>
2428
<groupId>io.quarkus</groupId>
2529
<artifactId>quarkus-jdbc-postgresql</artifactId>

303-quarkus-vertx-sql/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,14 @@
6666
<groupId>org.flywaydb</groupId>
6767
<artifactId>flyway-mysql</artifactId>
6868
</dependency>
69+
<dependency>
70+
<groupId>org.flywaydb</groupId>
71+
<artifactId>flyway-database-postgresql</artifactId>
72+
</dependency>
73+
<dependency>
74+
<groupId>org.flywaydb</groupId>
75+
<artifactId>flyway-database-db2</artifactId>
76+
</dependency>
6977
</dependencies>
7078
<profiles>
7179
<!-- Skipped on Windows as does not support Linux Containers / Testcontainers -->

0 commit comments

Comments
 (0)