|
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 3 | + <modelVersion>4.0.0</modelVersion> |
| 4 | + |
| 5 | + <groupId>org.hibernate.testcasetemplate</groupId> |
| 6 | + <artifactId>test-case-template-hibernate-reactive-7</artifactId> |
| 7 | + <version>1.0.0.Final</version> |
| 8 | + <name>Hibernate Reactive 2 Test Case Template</name> |
| 9 | + |
| 10 | + <properties> |
| 11 | + <version.junit-jupiter>5.11.4</version.junit-jupiter> |
| 12 | + <version.org.hibernate.reactive>2.4.5.Final</version.org.hibernate.reactive> |
| 13 | + <version.org.assertj.assertj-core>3.27.3</version.org.assertj.assertj-core> |
| 14 | + <version.io.vertx.vertx-sql-client>4.5.13</version.io.vertx.vertx-sql-client> |
| 15 | + <version.org.testcontainers>1.20.6</version.org.testcontainers> |
| 16 | + </properties> |
| 17 | + |
| 18 | + <dependencyManagement> |
| 19 | + <dependencies> |
| 20 | + <dependency> |
| 21 | + <groupId>org.junit</groupId> |
| 22 | + <artifactId>junit-bom</artifactId> |
| 23 | + <version>${version.junit-jupiter}</version> |
| 24 | + <type>pom</type> |
| 25 | + <scope>import</scope> |
| 26 | + </dependency> |
| 27 | + </dependencies> |
| 28 | + </dependencyManagement> |
| 29 | + |
| 30 | + <dependencies> |
| 31 | + <dependency> |
| 32 | + <groupId>org.hibernate.reactive</groupId> |
| 33 | + <artifactId>hibernate-reactive-core</artifactId> |
| 34 | + <version>${version.org.hibernate.reactive}</version> |
| 35 | + </dependency> |
| 36 | + |
| 37 | + <!-- PostgreSQL --> |
| 38 | + <dependency> |
| 39 | + <groupId>io.vertx</groupId> |
| 40 | + <artifactId>vertx-pg-client</artifactId> |
| 41 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 42 | + </dependency> |
| 43 | + <!-- Allow authentication to PostgreSQL using SCRAM --> |
| 44 | + <dependency> |
| 45 | + <groupId>com.ongres.scram</groupId> |
| 46 | + <artifactId>client</artifactId> |
| 47 | + <version>2.1</version> |
| 48 | + </dependency> |
| 49 | + |
| 50 | + <!-- MySQL --> |
| 51 | + <dependency> |
| 52 | + <groupId>io.vertx</groupId> |
| 53 | + <artifactId>vertx-mysql-client</artifactId> |
| 54 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 55 | + </dependency> |
| 56 | + |
| 57 | + <!-- DB2 --> |
| 58 | + <dependency> |
| 59 | + <groupId>io.vertx</groupId> |
| 60 | + <artifactId>vertx-db2-client</artifactId> |
| 61 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 62 | + </dependency> |
| 63 | + |
| 64 | + <!-- MSSQL --> |
| 65 | + <dependency> |
| 66 | + <groupId>io.vertx</groupId> |
| 67 | + <artifactId>vertx-mssql-client</artifactId> |
| 68 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 69 | + </dependency> |
| 70 | + |
| 71 | + <!-- Oracle --> |
| 72 | + <dependency> |
| 73 | + <groupId>io.vertx</groupId> |
| 74 | + <artifactId>vertx-oracle-client</artifactId> |
| 75 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 76 | + </dependency> |
| 77 | + |
| 78 | + <dependency> |
| 79 | + <groupId>org.junit.jupiter</groupId> |
| 80 | + <artifactId>junit-jupiter</artifactId> |
| 81 | + <scope>test</scope> |
| 82 | + </dependency> |
| 83 | + <dependency> |
| 84 | + <groupId>org.junit.platform</groupId> |
| 85 | + <artifactId>junit-platform-launcher</artifactId> |
| 86 | + <scope>test</scope> |
| 87 | + </dependency> |
| 88 | + <dependency> |
| 89 | + <groupId>org.junit.jupiter</groupId> |
| 90 | + <artifactId>junit-jupiter-engine</artifactId> |
| 91 | + <scope>test</scope> |
| 92 | + </dependency> |
| 93 | + <dependency> |
| 94 | + <groupId>org.assertj</groupId> |
| 95 | + <artifactId>assertj-core</artifactId> |
| 96 | + <version>${version.org.assertj.assertj-core}</version> |
| 97 | + <scope>test</scope> |
| 98 | + </dependency> |
| 99 | + <dependency> |
| 100 | + <groupId>io.vertx</groupId> |
| 101 | + <artifactId>vertx-junit5</artifactId> |
| 102 | + <version>${version.io.vertx.vertx-sql-client}</version> |
| 103 | + <scope>test</scope> |
| 104 | + </dependency> |
| 105 | + <!-- Testcontainers --> |
| 106 | + <dependency> |
| 107 | + <groupId>org.testcontainers</groupId> |
| 108 | + <artifactId>postgresql</artifactId> |
| 109 | + <version>${version.org.testcontainers}</version> |
| 110 | + <scope>test</scope> |
| 111 | + </dependency> |
| 112 | + <dependency> |
| 113 | + <groupId>org.testcontainers</groupId> |
| 114 | + <artifactId>mysql</artifactId> |
| 115 | + <version>${version.org.testcontainers}</version> |
| 116 | + <scope>test</scope> |
| 117 | + </dependency> |
| 118 | + <!-- JDBC driver for Testcontainers with MYSQL --> |
| 119 | + <dependency> |
| 120 | + <groupId>com.mysql</groupId> |
| 121 | + <artifactId>mysql-connector-j</artifactId> |
| 122 | + <version>9.1.0</version> |
| 123 | + <scope>test</scope> |
| 124 | + </dependency> |
| 125 | + <dependency> |
| 126 | + <groupId>org.testcontainers</groupId> |
| 127 | + <artifactId>mariadb</artifactId> |
| 128 | + <version>${version.org.testcontainers}</version> |
| 129 | + <scope>test</scope> |
| 130 | + </dependency> |
| 131 | + <!-- JDBC driver for Testcontainers with MariaDB --> |
| 132 | + <dependency> |
| 133 | + <groupId>org.mariadb.jdbc</groupId> |
| 134 | + <artifactId>mariadb-java-client</artifactId> |
| 135 | + <version>3.5.1</version> |
| 136 | + <scope>test</scope> |
| 137 | + </dependency> |
| 138 | + <dependency> |
| 139 | + <groupId>org.testcontainers</groupId> |
| 140 | + <artifactId>db2</artifactId> |
| 141 | + <version>${version.org.testcontainers}</version> |
| 142 | + <scope>test</scope> |
| 143 | + </dependency> |
| 144 | + <!-- JDBC driver for Testcontainers with Db2 --> |
| 145 | + <dependency> |
| 146 | + <groupId>com.ibm.db2</groupId> |
| 147 | + <artifactId>jcc</artifactId> |
| 148 | + <version>12.1.0.0</version> |
| 149 | + <scope>test</scope> |
| 150 | + </dependency> |
| 151 | + <dependency> |
| 152 | + <groupId>org.testcontainers</groupId> |
| 153 | + <artifactId>cockroachdb</artifactId> |
| 154 | + <version>${version.org.testcontainers}</version> |
| 155 | + <scope>test</scope> |
| 156 | + </dependency> |
| 157 | + <dependency> |
| 158 | + <groupId>org.testcontainers</groupId> |
| 159 | + <artifactId>oracle-xe</artifactId> |
| 160 | + <version>${version.org.testcontainers}</version> |
| 161 | + <scope>test</scope> |
| 162 | + </dependency> |
| 163 | + <dependency> |
| 164 | + <groupId>org.testcontainers</groupId> |
| 165 | + <artifactId>mssqlserver</artifactId> |
| 166 | + <version>${version.org.testcontainers}</version> |
| 167 | + <scope>test</scope> |
| 168 | + </dependency> |
| 169 | + <dependency> |
| 170 | + <groupId>com.microsoft.sqlserver</groupId> |
| 171 | + <artifactId>mssql-jdbc</artifactId> |
| 172 | + <version>12.8.1.jre11</version> |
| 173 | + <scope>test</scope> |
| 174 | + </dependency> |
| 175 | + </dependencies> |
| 176 | + |
| 177 | + <build> |
| 178 | + <plugins> |
| 179 | + <plugin> |
| 180 | + <groupId>org.apache.maven.plugins</groupId> |
| 181 | + <artifactId>maven-compiler-plugin</artifactId> |
| 182 | + <version>3.14.0</version> |
| 183 | + <configuration> |
| 184 | + <release>11</release> |
| 185 | + </configuration> |
| 186 | + </plugin> |
| 187 | + </plugins> |
| 188 | + </build> |
| 189 | +</project> |
0 commit comments