<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.resteasy</groupId>
        <artifactId>resteasy-jaxrs-all</artifactId>
        <version>2.2.2.GA</version>
	    <relativePath>../../pom.xml</relativePath>
    </parent>
    <artifactId>async-http-tomcat6</artifactId>
    <packaging>jar</packaging>
    <name>Async Http Tomcat 6</name>
    <description/>

    <dependencies>
        <dependency>
            <groupId>jboss.web</groupId>
            <artifactId>jbossweb</artifactId>
            <version>2.1.7.GA</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.jboss.resteasy</groupId>
            <artifactId>resteasy-jaxrs</artifactId>
            <version>${project.version}</version>
            <scope>provided</scope>
        </dependency>
		<dependency>
		  <groupId>org.apache.tomcat</groupId>
		  <artifactId>catalina</artifactId>
		  <version>6.0.18</version>
		  <scope>provided</scope>        
		</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>