<?xml version="1.0" encoding="UTF-8"?>
<project>
    <extend>../common/project.xml</extend>
    <!-- the version of maven's project object model -->
    <pomVersion>3</pomVersion>
    <!-- a unique name for this project -->
    <groupId>jsf-extensions</groupId>
    <artifactId>jsf-extensions-run-time</artifactId>
    <!-- a short but descriptive name for the project -->
    <name>Runtime Glassfish JSF Extensions</name>
    <!-- The version of the project under development, e.g.
       1.1, 1.2, 2.0-SNAPSHOT -->
    <currentVersion>0.1alpha4</currentVersion>
    <!-- details about the organization that 'owns' the project -->
    <organization>
        <name>Sun Microsystems Inc</name>
        <url>https://javaserverfaces.dev.java.net/</url>
        <logo>http://www.sun.com/im/a.gif</logo>
    </organization>
    <!-- the year the project started -->
    <inceptionYear>2005</inceptionYear>
    <package>com.sun.faces</package>
    <logo>http://www.sun.com/im/a.gif</logo>
    <description>JSF Extensions that go beyond the specification</description>
    <!-- a short description of what the project does -->
    <!-- the project home page -->
    <url>https://javaserverfaces.dev.java.net/</url>
    <issueTrackingUrl>https://javaserverfaces.dev.java.net/servlets/ProjectIssues</issueTrackingUrl>
    <siteAddress>javaserverfaces.dev.java.net</siteAddress>
    <siteDirectory>/</siteDirectory>
    <distributionDirectory>/servlets/ProjectDocumentList</distributionDirectory>
    <!-- the version control repository and http url for online access
       the connection element has the form:
       scm:<system>:<system specific connection string> -->
    <repository>
        <connection>scm:cvs:pserver:guest@cvs.dev.java.net:/cvs:${maven.javanet.project}</connection>
        <url>http://cvs.apache.org/viewcvs/maven-plugins/examples/</url>
    </repository>
    <!-- any mailing lists for the project -->
    <!-- who the developers are for the project -->
    <!-- jar files the project is dependent on -->
    <dependencies>
        <dependency>
            <groupId>commons-logging</groupId>
            <artifactId>commons-logging</artifactId>
            <version>1.0.4</version>
        </dependency>
        <dependency>
            <groupId>commons-digester</groupId>
            <artifactId>commons-digester</artifactId>
            <version>1.7</version>
        </dependency>
        <dependency>
            <groupId>commons-collections</groupId>
            <artifactId>commons-collections</artifactId>
            <version>3.1</version>
        </dependency>
        <dependency>
            <groupId>commons-beanutils</groupId>
            <artifactId>commons-beanutils</artifactId>
            <version>1.6</version>
        </dependency>
        <dependency>
            <groupId>ant</groupId>
            <artifactId>ant</artifactId>
            <version>1.6.2</version>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>1.2a1</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>javax.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>1.2a1</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>javaee</groupId>
            <artifactId>javaee</artifactId>
            <version>1.5</version>
            <type>jar</type>
        </dependency>
        <dependency>
            <groupId>javax.portlet</groupId>
            <artifactId>portlet-api</artifactId>
            <version>1.0</version>
        </dependency>
        <dependency>
            <groupId>taglibrarydoc</groupId>
            <artifactId>taglibrarydoc</artifactId>
            <version>1.3</version>
        </dependency>
    </dependencies>
    <!-- build information for the project -->
    <build>
        <nagEmailAddress>javaserverfowner@javaserverfaces.dev.java.net</nagEmailAddress>
        <sourceDirectory>src/main/java</sourceDirectory>
        <unitTestSourceDirectory>src/test/java</unitTestSourceDirectory>
        <unitTest>
            <includes>
                <include>**/*Test.java</include>
            </includes>
            <excludes>
                <exclude>**/NaughtyTest.java</exclude>
            </excludes>
        </unitTest>
        <resources>
            <resource>
                <targetPath>META-INF</targetPath>
                <directory>src/conf</directory>
                <includes>
                    <include>faces-config.xml</include>
                </includes>
            </resource>
            <resource>
                <targetPath>META-INF</targetPath>
                <directory>src/conf</directory>
                <includes>
                    <include>jsf-extensions.tld</include>
                </includes>
            </resource>
        </resources>
    </build>
</project>

