<?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>
    <artifactId>mongodb</artifactId>
    <groupId>io.mongock</groupId>
    <version>5.2.4</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>

  <name>Mongock driver for mongodb test template</name>
  <artifactId>mongodb-driver-test-template</artifactId>

  <dependencies>
    <!-- CORE DEPENDENCIES -->
    <dependency>
      <groupId>io.mongock</groupId>
      <artifactId>mongock-driver-core</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>io.mongock</groupId>
      <artifactId>mongock-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>io.mongock</groupId>
      <artifactId>mongock-decorator-util</artifactId>
      <version>${project.version}</version>
    </dependency>

    <dependency>
      <groupId>io.mongock</groupId>
      <artifactId>mongock-test-runner</artifactId>
      <version>${project.version}</version>
    </dependency>


    <dependency>
      <groupId>io.mongock</groupId>
      <artifactId>mongock-test-util</artifactId>
      <version>${project.version}</version>
    </dependency>


    <!-- MONGODB DEPENDENCIES -->
    <dependency>
      <groupId>org.mongodb</groupId>
      <artifactId>mongo-java-driver</artifactId>
      <version>${mongodb-driver-3.version}</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>

    <dependency>
      <groupId>org.mongodb</groupId>
      <artifactId>mongodb-driver-sync</artifactId>
      <version>${mongodb-sync-4.version}</version>
      <scope>provided</scope>
      <optional>true</optional>
    </dependency>
    
    <!-- TEST DEPENDENCIES -->
    <dependency>
      <groupId>org.junit.jupiter</groupId>
      <artifactId>junit-jupiter-api</artifactId>
        <version>${junit.jupiter.version}</version>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
        <version>${mockito-core.version}</version>
    </dependency>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>testcontainers</artifactId>
        <version>${test-containers.version}</version>
    </dependency>
    <dependency>
      <groupId>org.testcontainers</groupId>
      <artifactId>junit-jupiter</artifactId>
        <version>${test-containers.version}</version>
    </dependency>
  </dependencies>

</project>
