|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xmlns="http://maven.apache.org/POM/4.0.0" |
| 4 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 5 | + <parent> |
| 6 | + <artifactId>quarkus-integration-tests-parent</artifactId> |
| 7 | + <groupId>io.quarkus</groupId> |
| 8 | + <version>999-SNAPSHOT</version> |
| 9 | + </parent> |
| 10 | + <modelVersion>4.0.0</modelVersion> |
| 11 | + |
| 12 | + <artifactId>quarkus-integration-test-jdbc-postgresql</artifactId> |
| 13 | + <name>Quarkus - Integration Tests - JDBC - PostgreSQL</name> |
| 14 | + <description>Module that contains PostgreSQL related tests</description> |
| 15 | + <dependencies> |
| 16 | + <dependency> |
| 17 | + <groupId>io.quarkus</groupId> |
| 18 | + <artifactId>quarkus-agroal</artifactId> |
| 19 | + </dependency> |
| 20 | + <dependency> |
| 21 | + <groupId>io.quarkus</groupId> |
| 22 | + <artifactId>quarkus-jdbc-postgresql</artifactId> |
| 23 | + </dependency> |
| 24 | + <dependency> |
| 25 | + <groupId>io.quarkus</groupId> |
| 26 | + <artifactId>quarkus-resteasy</artifactId> |
| 27 | + </dependency> |
| 28 | + <dependency> |
| 29 | + <groupId>io.quarkus</groupId> |
| 30 | + <artifactId>quarkus-resteasy-jackson</artifactId> |
| 31 | + </dependency> |
| 32 | + <!-- test dependencies --> |
| 33 | + <dependency> |
| 34 | + <groupId>io.quarkus</groupId> |
| 35 | + <artifactId>quarkus-junit5</artifactId> |
| 36 | + <scope>test</scope> |
| 37 | + </dependency> |
| 38 | + <dependency> |
| 39 | + <groupId>io.rest-assured</groupId> |
| 40 | + <artifactId>rest-assured</artifactId> |
| 41 | + <scope>test</scope> |
| 42 | + <exclusions> |
| 43 | + <exclusion> |
| 44 | + <groupId>org.apache.commons</groupId> |
| 45 | + <artifactId>commons-lang3</artifactId> |
| 46 | + </exclusion> |
| 47 | + </exclusions> |
| 48 | + </dependency> |
| 49 | + |
| 50 | + <!-- Minimal test dependencies to *-deployment artifacts for consistent build order --> |
| 51 | + <dependency> |
| 52 | + <groupId>io.quarkus</groupId> |
| 53 | + <artifactId>quarkus-agroal-deployment</artifactId> |
| 54 | + <version>${project.version}</version> |
| 55 | + <type>pom</type> |
| 56 | + <scope>test</scope> |
| 57 | + <exclusions> |
| 58 | + <exclusion> |
| 59 | + <groupId>*</groupId> |
| 60 | + <artifactId>*</artifactId> |
| 61 | + </exclusion> |
| 62 | + </exclusions> |
| 63 | + </dependency> |
| 64 | + <dependency> |
| 65 | + <groupId>io.quarkus</groupId> |
| 66 | + <artifactId>quarkus-jdbc-postgresql-deployment</artifactId> |
| 67 | + <version>${project.version}</version> |
| 68 | + <type>pom</type> |
| 69 | + <scope>test</scope> |
| 70 | + <exclusions> |
| 71 | + <exclusion> |
| 72 | + <groupId>*</groupId> |
| 73 | + <artifactId>*</artifactId> |
| 74 | + </exclusion> |
| 75 | + </exclusions> |
| 76 | + </dependency> |
| 77 | + <dependency> |
| 78 | + <groupId>io.quarkus</groupId> |
| 79 | + <artifactId>quarkus-resteasy-deployment</artifactId> |
| 80 | + <version>${project.version}</version> |
| 81 | + <type>pom</type> |
| 82 | + <scope>test</scope> |
| 83 | + <exclusions> |
| 84 | + <exclusion> |
| 85 | + <groupId>*</groupId> |
| 86 | + <artifactId>*</artifactId> |
| 87 | + </exclusion> |
| 88 | + </exclusions> |
| 89 | + </dependency> |
| 90 | + <dependency> |
| 91 | + <groupId>io.quarkus</groupId> |
| 92 | + <artifactId>quarkus-resteasy-jackson-deployment</artifactId> |
| 93 | + <version>${project.version}</version> |
| 94 | + <type>pom</type> |
| 95 | + <scope>test</scope> |
| 96 | + <exclusions> |
| 97 | + <exclusion> |
| 98 | + <groupId>*</groupId> |
| 99 | + <artifactId>*</artifactId> |
| 100 | + </exclusion> |
| 101 | + </exclusions> |
| 102 | + </dependency> |
| 103 | + </dependencies> |
| 104 | + |
| 105 | + <build> |
| 106 | + <resources> |
| 107 | + <resource> |
| 108 | + <directory>src/main/resources</directory> |
| 109 | + <filtering>true</filtering> |
| 110 | + </resource> |
| 111 | + </resources> |
| 112 | + <plugins> |
| 113 | + <plugin> |
| 114 | + <groupId>io.quarkus</groupId> |
| 115 | + <artifactId>quarkus-maven-plugin</artifactId> |
| 116 | + <executions> |
| 117 | + <execution> |
| 118 | + <goals> |
| 119 | + <goal>build</goal> |
| 120 | + </goals> |
| 121 | + </execution> |
| 122 | + </executions> |
| 123 | + </plugin> |
| 124 | + </plugins> |
| 125 | + </build> |
| 126 | +</project> |
0 commit comments