<?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/maven-v4_0_0.xsd"
>
    <parent>
        <groupId>org.openwfe</groupId>
        <artifactId>openwfe-top</artifactId>
        <version>1.7.2</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <groupId>org.openwfe</groupId>
    <artifactId>openwfe-webserver</artifactId>
    <version>1.7.2</version>

    <name>OpenWFE webserver</name>

    <packaging>jar</packaging>

    <licenses>
        <license>
            <name>BSD License</name>
            <url>http://www.opensource.org/licenses/bsd-license.php</url>
        </license>
    </licenses>
    <scm>
        <url>http://svn.sourceforge.net/viewcvs.cgi/openwfe/</url>
    </scm>

    <description>
Some wrapping around Jetty
    </description>

    <url>http://www.openwfe.org</url>

    <inceptionYear>2001</inceptionYear>

    <!--
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.4</source>
                    <target>1.4</target>
                    <debug>true</debug>
                    <optimize>false</optimize>
                    <verbose>false</verbose>
                </configuration>
            </plugin>
        </plugins>
    </build>
    -->

    <dependencies>
        <dependency>
            <groupId>jetty</groupId>
            <artifactId>org.mortbay.jetty</artifactId>
            <version>5.1.6</version>
        </dependency>
        <dependency>
            <groupId>tomcat</groupId>
            <artifactId>jasper-compiler</artifactId>
            <version>5.5.9</version>
        </dependency>
        <dependency>
            <groupId>tomcat</groupId>
            <artifactId>jasper-runtime</artifactId>
            <version>5.5.9</version>
        </dependency>
        <!--
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
        </dependency>
        -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.0</version>
        </dependency>
        <dependency>
            <groupId>commons-el</groupId>
            <artifactId>commons-el</artifactId>
            <version>1.0</version>
        </dependency>
        <!-- provided for by each webapp
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
            <version>1.0</version>
        </dependency>
        -->

        <dependency>
            <groupId>org.openwfe</groupId>
            <artifactId>openwfe-applic</artifactId>
            <version>1.7.2</version>
        </dependency>
    </dependencies>

</project>
