<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      
    <parent>
            
        <groupId>io.vertx</groupId>
            
        <artifactId>vertx-ext-parent</artifactId>
            
        <version>38</version>
          
    </parent>
      
    <modelVersion>4.0.0</modelVersion>
      
    <artifactId>vertx-jdbc-client</artifactId>
      
    <version>4.1.5</version>
      
    <properties>
            
        <stack.version>4.1.5</stack.version>
            
        <jar.manifest>${project.basedir}/src/main/resources/META-INF/MANIFEST.MF</jar.manifest>
          
    </properties>
      
    <dependencyManagement>
            
        <dependencies>
                  
            <dependency>
                        
                <groupId>io.vertx</groupId>
                        
                <artifactId>vertx-dependencies</artifactId>
                        
                <version>${stack.version}</version>
                        
                <type>pom</type>
                        
                <scope>import</scope>
                      
            </dependency>
                
        </dependencies>
          
    </dependencyManagement>
      
    <dependencies>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-core</artifactId>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-codegen</artifactId>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-sql-client</artifactId>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-docgen</artifactId>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <!-- this dependency is aligned with the vert.x core one do avoid dependencies to get another version -->
                  
            <groupId>org.slf4j</groupId>
                  
            <artifactId>slf4j-api</artifactId>
                  
            <version>1.7.21</version>
                  
            <scope>provided</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>com.mchange</groupId>
                  
            <artifactId>c3p0</artifactId>
                  
            <version>0.9.5.4</version>
                
        </dependency>
            
        <dependency>
                  
            <groupId>com.zaxxer</groupId>
                  
            <artifactId>HikariCP</artifactId>
                  
            <version>4.0.3</version>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.agroal</groupId>
                  
            <artifactId>agroal-api</artifactId>
                  
            <version>1.11</version>
                  
            <optional>true</optional>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.agroal</groupId>
                  
            <artifactId>agroal-pool</artifactId>
                  
            <version>1.11</version>
                  
            <optional>true</optional>
                
        </dependency>
            
        <!-- Testing -->
            
        <dependency>
                  
            <groupId>junit</groupId>
                  
            <artifactId>junit</artifactId>
                  
            <version>4.13.1</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-core</artifactId>
                  
            <type>test-jar</type>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.hsqldb</groupId>
                  
            <artifactId>hsqldb</artifactId>
                  
            <version>2.3.4</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.apache.derby</groupId>
                  
            <artifactId>derby</artifactId>
                  
            <version>10.12.1.1</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>com.h2database</groupId>
                  
            <artifactId>h2</artifactId>
                  
            <version>1.4.191</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>mysql</groupId>
                  
            <artifactId>mysql-connector-java</artifactId>
                  
            <version>6.0.2</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-sql-client</artifactId>
                  
            <type>test-jar</type>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>io.vertx</groupId>
                  
            <artifactId>vertx-unit</artifactId>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.testcontainers</groupId>
                  
            <artifactId>mssqlserver</artifactId>
                  
            <version>1.15.2</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>com.microsoft.sqlserver</groupId>
                  
            <artifactId>mssql-jdbc</artifactId>
                  
            <version>7.2.2.jre8</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>org.testcontainers</groupId>
                  
            <artifactId>clickhouse</artifactId>
                  
            <version>1.15.2</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>ru.yandex.clickhouse</groupId>
                  
            <artifactId>clickhouse-jdbc</artifactId>
                  
            <version>0.2.4</version>
                  
            <scope>test</scope>
                
        </dependency>
            
        <dependency>
                  
            <groupId>com.oracle.database.jdbc</groupId>
                  
            <artifactId>ojdbc8</artifactId>
                  
            <version>21.1.0.0</version>
                  
            <scope>test</scope>
                
        </dependency>
          
    </dependencies>
      
    <build>
            
        <pluginManagement>
                  
            <plugins>
                        
                <plugin>
                              
                    <groupId>org.apache.maven.plugins</groupId>
                              
                    <artifactId>maven-surefire-plugin</artifactId>
                              
                    <configuration>
                                    
                        <systemPropertyVariables>
                                          
                            <!-- Necessary for HSQLDB blob testing -->
                                          
                            <textdb.allow_full_path>true</textdb.allow_full_path>
                                        
                        </systemPropertyVariables>
                                  
                    </configuration>
                            
                </plugin>
                      
            </plugins>
                
        </pluginManagement>
          
    </build>
    
</project>
