<?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>mule-migration-tool-gateway</artifactId>
        <groupId>com.mulesoft.tools</groupId>
        <version>1.0.0</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>mule-migration-tool-gateway-plugin</artifactId>

    <properties>
        <mule.migration.tool.version>1.0.0-SNAPSHOT</mule.migration.tool.version>

        <!-- License plugin properties -->
        <licensePath>../LICENSE_HEADER.txt</licensePath>

        <!-- Formatter properties -->
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <formatterConfigPath>../formatter.xml</formatterConfigPath>
        <formatterGoal>format</formatterGoal>
        <checkstyle.plugin.version>2.17</checkstyle.plugin.version>
        <javaFormatter.plugin.version>1.9.0</javaFormatter.plugin.version>
        <skipVerifications>false</skipVerifications>
        <mma.version>${project.version}</mma.version>
        <mule.version>4.1.5</mule.version>


    </properties>

    <dependencies>
        <dependency>
            <groupId>com.mulesoft.tools</groupId>
            <artifactId>mule-migration-tool-api</artifactId>
            <version>${mule.migration.tool.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.tools</groupId>
            <artifactId>mule-migration-tool-library</artifactId>
            <version>${mule.migration.tool.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.yaml</groupId>
            <artifactId>snakeyaml</artifactId>
            <version>1.23</version>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>com.mulesoft.tools</groupId>
            <artifactId>mule-migration-tool-expression</artifactId>
            <version>${mule.migration.tool.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.xmlunit</groupId>
            <artifactId>xmlunit-matchers</artifactId>
            <version>2.5.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>

</project>