<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>org.apache.sandesha2</groupId>
	<artifactId>sandesha2-parent</artifactId>
        <version>1.25</version>
    </parent>

    <groupId>org.apache.sandesha2</groupId>
    <artifactId>distribution</artifactId>

    <name>Sandesha2 - Distribution</name>
    <description>Sandesha2 - Distribution</description>
    <packaging>pom</packaging>

    <build>
    <plugins>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <version>2.1</version>
            <executions>
                <execution>
                    <id>distribution-package</id>
                    <phase>package</phase>
                    <goals>
                        <goal>single</goal>
                    </goals>
                    <configuration>
                        <descriptors>
                            <descriptor>src/main/assembly/bin.xml</descriptor>
                            <descriptor>src/main/assembly/src.xml</descriptor>
                        </descriptors>
                        <finalName>sandesha2-${version}</finalName>
                    </configuration>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>
</project>
