<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.jboss.webbeans.integration</groupId>
      <artifactId>webbeans-ri-int</artifactId>
      <version>5.2.0.ALPHA3</version>
   </parent>
   
   <groupId>org.jboss.webbeans.integration</groupId>
   <artifactId>webbeans-ri-int-deployer</artifactId>
   <version>5.2.0.ALPHA3</version>
   <packaging>pom</packaging>
   <name>Web Beans JBoss AS Deployer</name>
   <description>Web Beans deployer for JBoss AS</description>
   
   <repositories>
   	<repository>
   		<id>snapshots.jboss.org</id>
   		<name>JBoss Snapshot's Repository</name>
   		<url>http://snapshots.jboss.org/maven2</url>
   		<releases>
   			<enabled>false</enabled>
   		</releases>
   		<snapshots>
            <enabled>true</enabled>
            <updatePolicy>always</updatePolicy>
   		</snapshots>
   	</repository>
   </repositories>
   
   <build>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-assembly-plugin</artifactId>
            <configuration>
               <descriptors>
                  <descriptor>src/main/assembly/assembly.xml</descriptor>
               </descriptors>
            </configuration>
         </plugin>
      </plugins>
   </build>
   
   <dependencies>
      <dependency>
         <groupId>org.jboss.webbeans.integration</groupId>
         <artifactId>webbeans-ri-int-jbossas</artifactId>
         <optional>true</optional>
      </dependency>
      <dependency>
         <groupId>org.jboss.webbeans</groupId>
         <artifactId>webbeans-ri</artifactId>
         <optional>true</optional>
      </dependency>
   </dependencies>

</project>
