<?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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.mulesoft.munit.tests</groupId>
        <artifactId>app-with-duplicate-dependency</artifactId>
        <version>2.3.13</version>
    </parent>

    <artifactId>dependency</artifactId>
    <packaging>pom</packaging>

    <name>MUnit :: App with Duplicate Dependency - Dependency</name>
    <description>Dependency that will be used for test purpose</description>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>build-helper-maven-plugin</artifactId>
                <version>${build.helper.maven.plugin.version}</version>

                <executions>
                    <execution>
                        <id>attach-artifacts</id>
                        <phase>package</phase>
                        <goals>
                            <goal>attach-artifact</goal>
                        </goals>

                        <configuration>
                            <artifacts>
                                <artifact>
                                    <file>./pom.xml</file>
                                    <type>pom</type>
                                    <classifier>classifier-1</classifier>
                                </artifact>

                                <artifact>
                                    <file>./pom.xml</file>
                                    <type>pom</type>
                                    <classifier>classifier-2</classifier>
                                </artifact>
                            </artifacts>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>
