<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>
	<artifactId>overlord-rtgov-profiles-fabric</artifactId> 
	<name>Overlord RTGov::Distribution::Profiles Fabric</name>

	<parent>
		<groupId>org.overlord.rtgov</groupId>
		<artifactId>distribution</artifactId>
		<version>2.0.0.Beta1</version>
	</parent>

	<build>
		<plugins>
		    <plugin>
		        <artifactId>maven-assembly-plugin</artifactId>
		        <executions>
		          <execution>
		            <id>make-dist</id>
		            <phase>package</phase>
		            <goals>
		              <goal>single</goal>
		            </goals>
		            <configuration>
		              <finalName>overlord-rtgov-profiles-fabric-${project.version}</finalName>
		              <attach>true</attach>
		              <descriptors>
		                <descriptor>src/main/assembly/dist.xml</descriptor>
		              </descriptors>
		              <tarLongFileMode>gnu</tarLongFileMode>
		              <appendAssemblyId>false</appendAssemblyId>
		              <archiverConfig>
		                <defaultDirectoryMode>0755</defaultDirectoryMode>
		              </archiverConfig>
		            </configuration>
		          </execution>
		        </executions>
		    </plugin>      
		</plugins>
	</build>

</project>
