<?xml version="1.0" encoding="UTF-8"?>
  <!--
  vi:ts=2:sw=2:expandtab:
-->
<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">

  <!-- Parent -->
  <parent>
    <groupId>org.jboss.embedded</groupId>
    <artifactId>jboss-embedded-build</artifactId>
    <version>1.0.0-alpha-1</version>
    <relativePath>../build/pom.xml</relativePath>
  </parent>

  <!-- Model Version -->
  <modelVersion>4.0.0</modelVersion>

  <!-- Artifact Configuration -->
  <artifactId>jboss-embedded-assembly</artifactId>
  <packaging>pom</packaging>
  <name>JBossAS Embedded Assembly</name>
  <description>JBoss Application Server Embedded Distribution</description>

  <!-- Properties -->
  <properties>

    <!-- Versioning -->


  </properties>

  <!-- Build -->
  <build>

    <plugins>
      <!-- Assembly Plugin -->
      <plugin>
        <artifactId>maven-assembly-plugin</artifactId>
        <executions>
          <execution>
            <id>make-assembly</id>
            <phase>package</phase>
            <goals>
              <goal>attached</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <descriptors>
            <descriptor>embedded-assembly.xml</descriptor>
          </descriptors>
        </configuration>
        <inherited>false</inherited>
      </plugin>

    </plugins>
  </build>

  <!-- Dependencies -->
  <dependencies>

    <!-- 
    We get dependencies transitively through these
     -->
    <dependency>
      <groupId>org.jboss.jbossas</groupId>
      <artifactId>jboss-as-parent</artifactId>
      <type>pom</type>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.jboss.embedded</groupId>
      <artifactId>jboss-embedded-depchain</artifactId>
      <type>pom</type>
      <version>${version}</version>
      <optional>true</optional>
    </dependency>

  </dependencies>

</project>
