<?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>

    <groupId>com.mulesoft.connectors</groupId>
    <artifactId>mule4-edifact-base-connector</artifactId>
    <packaging>jar</packaging>
    <name>Mule EDIFACT EDI Base-Connector</name>

    <parent>
        <groupId>com.mulesoft.connectors</groupId>
        <artifactId>mule4-edifact-support-parent</artifactId>
        <version>1.3.14</version>
        <relativePath>..</relativePath>
    </parent>

    <properties>
        <!-- runtime version to run -->
        <runtimeVersion>4.1.3</runtimeVersion>
        <runtimeProduct>MULE_EE</runtimeProduct>
        <edifact.support.parent.version>${project.parent.version}</edifact.support.parent.version>
        <flatfileMetadataVersion>1.2.1</flatfileMetadataVersion>
    </properties>

    <dependencies>
        <dependency>
            <groupId>com.mulesoft.connectors</groupId>
            <artifactId>mule4-edifact-parser</artifactId>
            <version>${edifact.support.parent.version}</version>
        </dependency>
        <dependency>
            <groupId>org.mule.metadata.flatfile</groupId>
            <artifactId>schema-metadata</artifactId>
            <version>${flatfileMetadataVersion}</version>
        </dependency>
        <dependency>
            <groupId>com.mulesoft.connectors</groupId>
            <artifactId>mule-connector-commons</artifactId>
            <version>2.1.0</version>
        </dependency>
        <dependency>
            <groupId>org.mule.runtime</groupId>
            <artifactId>mule-extensions-api</artifactId>
            <version>1.1.5</version>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>${junit.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mule.runtime</groupId>
            <artifactId>mule-api</artifactId>
            <version>1.1.1</version>
        </dependency>
    </dependencies>
</project>