<?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>
        <artifactId>samples</artifactId>
        <groupId>org.aperteworkflow</groupId>
        <version>1.1</version>
    </parent>

    <artifactId>mule-attachment-sample</artifactId>
    <packaging>bundle</packaging>


    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <version>2.1.0</version>
                <configuration>
                    <instructions>
                        <Bundle-SymbolicName>org.aperteworkflow.sample.mulestep.attachment</Bundle-SymbolicName>
                        <Bundle-Version>1</Bundle-Version>
                        <Bundle-Name>org.aperteworkflow.sample.mulestep.attachment</Bundle-Name>
                        <Bundle-Description>org.aperteworkflow.sample.mulestep.attachment</Bundle-Description>
                        <Mule-Config-Files>/mule-attachment-sample.xml</Mule-Config-Files>
                    </instructions>
                </configuration>
            </plugin>

            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <version>2.2</version>
                <configuration>
                    <useDefaultManifestFile>true</useDefaultManifestFile>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>

