<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>com.projectdarkstar.client</groupId>
    <artifactId>sgs-client-parent</artifactId>
    <version>0.9.10.5</version>
  </parent>

  <artifactId>sgs-tutorial-client-dist</artifactId>
  <name>Project Darkstar Client Tutorial Distribution</name>
  <packaging>pom</packaging>
  <description>
    The sgs-tutorial-client-dist generates a zip artifact of 
    the files intended to be packaged as the tutorial component
    in the main sgs-client-dist distribution
  </description>

  <dependencies>
    <dependency>
      <groupId>com.projectdarkstar.client</groupId>
      <artifactId>sgs-tutorial-client</artifactId>
    </dependency>
    <dependency>
      <groupId>com.projectdarkstar.client</groupId>
      <artifactId>sgs-tutorial-client</artifactId>
      <classifier>sources</classifier>
    </dependency>
  </dependencies>

  <build>
    <plugins>
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <configuration>
          <descriptors>
            <descriptor>src/main/assembly/dist.xml</descriptor>
          </descriptors>
        </configuration>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>attached</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
    </plugins>
  </build>


</project>
