Skip to content

Commit

Permalink
Add the quarkus-jdbc-postgresql dependency to jpa-oracle integration …
Browse files Browse the repository at this point in the history
…tests to test for #19055
  • Loading branch information
Sanne committed Dec 15, 2021
1 parent 709d922 commit 1512b7d
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions integration-tests/jpa-oracle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,14 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-oracle</artifactId>
</dependency>
<!-- Include the PostgreSQL driver as well: not actually used, but
we need to validate native-image compilation with multiple JDBC drivers, in particular to
test all weird native-image metadata being included in the Oracle JDBC driver -->
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-postgresql</artifactId>
</dependency>

<!-- .. and some web endpoints -->
<dependency>
<groupId>io.quarkus</groupId>
Expand Down Expand Up @@ -80,6 +88,19 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-jdbc-postgresql-deployment</artifactId>
<version>${project.version}</version>
<type>pom</type>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>*</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-undertow-deployment</artifactId>
Expand Down

0 comments on commit 1512b7d

Please sign in to comment.