<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>io.apiman</groupId>
    <artifactId>apiman-common</artifactId>
    <version>1.0.2.Final</version>
  </parent>
  <artifactId>apiman-common-servlet</artifactId>
  <name>apiman-common-servlet</name>

  <dependencies>
    <!-- Project Dependencies -->
    <dependency>
      <groupId>io.apiman</groupId>
      <artifactId>apiman-common-auth</artifactId>
    </dependency>
    
    <!-- Third Party Dependencies -->
    <dependency>
      <groupId>commons-codec</groupId>
      <artifactId>commons-codec</artifactId>
    </dependency>

    <!-- Spec Libraries -->
    <dependency>
      <groupId>org.jboss.spec.javax.servlet</groupId>
      <artifactId>jboss-servlet-api_3.0_spec</artifactId>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>