<?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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.mulesoft.mule.runtime.modules</groupId>
        <artifactId>mule-modules</artifactId>
        <version>4.11.0</version>
    </parent>
    <groupId>com.mulesoft.mule.runtime.boot</groupId>
    <artifactId>mule-module-license-boot-ee</artifactId>
    <name>Mule License Bootstrap</name>
    <description>Classes used to validate licenses when booting up the Mule server</description>

    <properties>
        <!-- open internal required stuff to the test infrastructure -->
        <surefire.args>
            -XX:+IgnoreUnrecognizedVMOptions
            ${surefire.test.unit.open.args}
        </surefire.args>

        <skipExportTests>false</skipExportTests>

        <javaModuleName>com.mulesoft.mule.boot.license</javaModuleName>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.mule.runtime.boot</groupId>
            <artifactId>mule-module-boot-api</artifactId>
            <version>${project.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>org.mule.runtime.boot</groupId>
                    <artifactId>mule-module-logging</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.mule.runtime.boot</groupId>
                    <artifactId>
                        mule-module-log4j-boot-configurator
                    </artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.licm</groupId>
            <artifactId>licm</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mule.tests</groupId>
            <artifactId>mule-tests-unit</artifactId>
            <version>${project.version}</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>
