<?xml version="1.0" encoding="UTF-8"?>
<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</groupId>
      <artifactId>parent</artifactId>
      <version>1.0.0.ALPHA2</version>
   </parent>
   <groupId>org.jboss.webbeans.examples</groupId>
   <artifactId>parent</artifactId>
   <packaging>pom</packaging>
   <version>1.0.0.ALPHA2</version>
   <name>Web Beans Examples</name>

   <description>
      Examples for the reference implementation of JSR 299: Web Beans
   </description>

   <modules>
      <module>numberguess</module>
      <module>translator</module>
      <module>login</module>
   </modules>

   <build>
      <pluginManagement>
         <plugins>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-war-plugin</artifactId>
               <configuration>
                  <warSourceDirectory>${basedir}/WebContent</warSourceDirectory>
               </configuration>
            </plugin>
            <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-ejb-plugin</artifactId>
               <configuration>
                  <ejbVersion>3.0</ejbVersion>
               </configuration>
            </plugin>
         </plugins>
      </pluginManagement>
      <plugins>
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-release-plugin</artifactId>
           <version>2.0-beta-8</version>
           <configuration>
             <tagBase>https://svn.jboss.org/repos/webbeans/examples/tags</tagBase>
             <autoVersionSubmodules>true</autoVersionSubmodules>
           </configuration>
         </plugin>
      </plugins>
   </build>

   <scm>
      <connection>scm:svn:http://anonsvn.jboss.org/repos/webbeans/examples/1.0.0.ALPHA2</connection>
      <developerConnection>scm:svn:https://svn.jboss.org/repos/webbeans/examples/tags/1.0.0.ALPHA2</developerConnection>
      <url>http://fisheye.jboss.org/browse/WebBeans/examples/1.0.0.ALPHA2</url>
   </scm>


</project>

