<?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>org.fusesource.fabric</groupId>
        <artifactId>process-project</artifactId>
        <version>7.2.0.redhat-065</version>
        <relativePath>..</relativePath>
    </parent>

    <artifactId>process-launcher</artifactId>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <description>Fuse Process :: Launcher</description>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-assembly-plugin</artifactId>
        		<version>2.2</version>
                <executions>
                    <execution>
                        <id>package-tgz</id>
                        <phase>package</phase>
                        <goals>
                            <goal>single</goal>
                        </goals>
                        <configuration>
                            <descriptors>
                                <descriptor>src/main/assemblies/packaging.xml</descriptor>
                            </descriptors>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    
</project>

