<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.capedwarf.green</groupId>
    <artifactId>capedwarf-build</artifactId>
    <version>1.0.0.Beta3</version>
  </parent>

  <modelVersion>4.0.0</modelVersion>
  <artifactId>capedwarf-server-jee</artifactId>
  <packaging>jar</packaging>
  <name>CapeDwarf Server Side -- JEE</name>
  <url>http://www.jboss.org/capedwarf</url>
  <description>CapeDwarf Server Side -- JEE</description>

   <dependencies>

    <dependency>
      <groupId>org.jboss.capedwarf.green</groupId>
      <artifactId>capedwarf-common</artifactId>
      <exclusions>
         <exclusion>
            <groupId>javax.validation</groupId>
            <artifactId>validation-api</artifactId>
         </exclusion>
         <!-- exclusion>
           <groupId>org.hibernate</groupId>
           <artifactId>hibernate-validator</artifactId>
         </exclusion -->
         <exclusion>
             <groupId>org.json</groupId>
             <artifactId>json</artifactId>
         </exclusion>
       </exclusions>
    </dependency>

    <dependency>
      <groupId>org.jboss.capedwarf.green</groupId>
      <artifactId>capedwarf-jpa2</artifactId>
    </dependency>

    <dependency>
      <groupId>org.jboss.capedwarf.green</groupId>
      <artifactId>capedwarf-social</artifactId>
    </dependency>

    <dependency>
      <groupId>org.jboss.capedwarf.green</groupId>
      <artifactId>capedwarf-server-api</artifactId>
    </dependency>

    <dependency>
       <groupId>org.json</groupId>
       <artifactId>json</artifactId>
    </dependency>

       <dependency>
           <groupId>org.kohsuke.metainf-services</groupId>
           <artifactId>metainf-services</artifactId>
           <optional>true</optional>
       </dependency>

      <dependency>
         <groupId>javax.servlet</groupId>
         <artifactId>servlet-api</artifactId>
         <scope>provided</scope>
      </dependency>
      <dependency>
          <groupId>com.google.appengine</groupId>
          <artifactId>geronimo-jta_1.1_spec</artifactId>
      </dependency>
       <dependency>
           <groupId>org.hibernate.javax.persistence</groupId>
           <artifactId>hibernate-jpa-2.0-api</artifactId>
           <scope>provided</scope>
       </dependency>

       <dependency>
           <groupId>org.infinispan</groupId>
           <artifactId>infinispan-core</artifactId>
           <scope>provided</scope>
       </dependency>

        <dependency>
            <groupId>javax.mail</groupId>
            <artifactId>mail</artifactId>
            <scope>provided</scope>
        </dependency>

      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
          <scope>test</scope>
      </dependency>

       <dependency>
        <groupId>org.jboss.arquillian.junit</groupId>
        <artifactId>arquillian-junit-container</artifactId>
        <scope>test</scope>
      </dependency>

  </dependencies>

</project>
