<?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/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
    
   <parent>
      <groupId>com.rackspace.papi.core</groupId>
      <artifactId>core-support</artifactId>
      <version>1.4.2</version>
   </parent>

   <groupId>org.openrepose.powerproxy</groupId>
   <artifactId>proxy-core</artifactId>

   <name>Repose Core - Power Proxy Container</name>
    
   <packaging>jar</packaging>

   <dependencies>
      <dependency>
         <groupId>org.openrepose.servlet</groupId>
         <artifactId>servlet-api</artifactId>
      </dependency>
        
      <dependency>
         <groupId>com.rackspace.papi.core</groupId>
         <artifactId>core-lib</artifactId>
      </dependency>
        
      <dependency>
         <groupId>com.rackspace.papi.commons</groupId>
         <artifactId>utilities</artifactId>
      </dependency>

      <dependency>
         <groupId>com.rackspace.papi.external</groupId>
         <artifactId>jee6-schemas</artifactId>
      </dependency>
        
      <dependency>
         <groupId>org.jboss.netty</groupId>
         <artifactId>netty</artifactId>
      </dependency>
        
      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
      </dependency>

      <!--<dependency>-->
         <!--<groupId>org.slf4j</groupId>-->
         <!--<artifactId>slf4j-jdk14</artifactId>-->
      <!--</dependency>-->

      <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
      </dependency>
        
      <dependency>
         <groupId>junit</groupId>
         <artifactId>junit</artifactId>
      </dependency>
        
      <dependency>
         <groupId>org.mockito</groupId>
         <artifactId>mockito-all</artifactId>
      </dependency>
   </dependencies>

   <build>
      <plugins>
         <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>

            <configuration>
               <source>1.6</source>
               <target>1.6</target>
            </configuration>
         </plugin>
      </plugins>
   </build>
</project>

