<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>
  <groupId>com.github.dblock.waffle</groupId>
  <artifactId>waffle-tomcat5</artifactId>
  <version>1.5</version>
  <packaging>jar</packaging>

  <name>waffle-tomcat5</name>
  <description>Tomcat 5 integration for WAFFLE</description>
  <url>http://dblock.github.com/waffle/</url>

  <licenses>
    <license>
      <name>Eclipse Public License</name>
      <url>https://raw.github.com/dblock/waffle/master/LICENSE</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <scm>
    <connection>scm:git:git@github.com:dblock/waffle.git</connection>
    <developerConnection>scm:git:git@github.com:dblock/waffle.git</developerConnection>
    <url>git@github.com:dblock/waffle.git</url>
  </scm>
  <developers>
    <developer>
      <id>dblock</id>
      <name>Daniel Doubrovkine</name>
    </developer>
  </developers>

  <dependencies>
    <dependency>
      <groupId>${project.groupId}</groupId>
      <artifactId>waffle-jna</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>tomcat</groupId>
      <artifactId>catalina</artifactId>
      <version>5.5.36</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>tomcat</groupId>
      <artifactId>servlet-api</artifactId>
      <version>5.5.36</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>tomcat</groupId>
      <artifactId>tomcat-util</artifactId>
      <version>5.5.36</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
