<?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>api-gateway-tests-integration-tita</artifactId>
        <groupId>com.mulesoft.anypoint</groupId>
        <version>4.4.0-20220919</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <artifactId>api-gateway-tita-core-extensions</artifactId>
    <name>API Gateway Core Extension TITA Tests</name>

    <packaging>jar</packaging>

    <properties>
        <formatterConfigPath>../../../formatter.xml</formatterConfigPath>
        <!-- TITA needs this properties to avoid loading the muleMavenClient defined in the mule parent -->
        <muleMavenClientApi>1.1.4</muleMavenClientApi>
        <muleMavenClientImpl>1.1.4</muleMavenClientImpl>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.mulesoft.anypoint</groupId>
            <artifactId>api-gateway-tita-environment-api</artifactId>
            <version>${apiGatewayTitaVersion}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.anypoint</groupId>
            <artifactId>api-gateway-core</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.anypoint.tita</groupId>
            <artifactId>artifacts-bom</artifactId>
            <version>${apiGatewayTitaArtifactsVersion}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.anypoint</groupId>
            <artifactId>api-gateway-api</artifactId>
            <version>${apiGatewayApiVersion}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.anypoint</groupId>
            <artifactId>api-gateway-contract-service-api</artifactId>
            <version>${contractsServiceApiVersion}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>com.mulesoft.anypoint</groupId>
            <artifactId>api-gateway-tests-core-extensions</artifactId>
            <version>${project.version}</version>
            <type>test-jar</type>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-maven-client-impl</artifactId>
            <version>${muleMavenClientImpl}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule</groupId>
            <artifactId>mule-maven-client-api</artifactId>
            <version>${muleMavenClientApi}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
