<?xml version="1.0" encoding="UTF-8"?>
<!--
/*
 *  Pager Tag Library
 *
 *  Copyright (C) 2002  James Klicman <james@jsptags.com>
 *
 *  The latest release of this tag library can be found at
 *  http://jsptags.com/tags/navigation/pager/
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2.1 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
-->
<project>
  <pomVersion>3</pomVersion>
  <id>${pom.groupId}:${pom.artifactId}</id>
  <name>Pager Tag Library</name>
  <artifactId>pager-taglib</artifactId>
  <groupId>jsptags.com</groupId>
  <currentVersion>2.0</currentVersion>
  <description>
    The Pager Tag Library is the easy and flexible way to implement paging of
    large data sets in JavaServer Pages (JSP). It can emulate all currently
    known paging styles with minimal effort. It also includes re-usable index
    styles that emulate the search result navigators of popular web sites
    such as Google[sm], AltaVistaÂ® and Yahoo!. The Pager Tag Library does most
    of the work for you by dynamically organizing your data set into pages and
    generating a browsable index with virtually any look desired.
  </description>
  <shortDescription>
    Pager Taglib
  </shortDescription>
	<organization>
		<name>jsptags.com/tags/navigation/pager/</name>
		<url>http://jsptags.com/tags/navigation/pager/</url>
	</organization>
	<inceptionYear>2002</inceptionYear>
	<package>com.jsptags.navigation.pager</package>
  <dependencies>
		<dependency>
			<groupId>servletapi</groupId>
			<artifactId>servletapi</artifactId>
			<version>2.4-20040521</version>
			<type>jar</type>
		</dependency>
		<dependency>
			<groupId>jspapi</groupId>
			<artifactId>jsp-api</artifactId>
			<version>2.0-20040521</version>
			<type>jar</type>
		</dependency>
  </dependencies>
	<build>
		<sourceDirectory>${basedir}/src/java</sourceDirectory>
		<!-- J A R  R E S O U R C E S -->
		<!-- Resources that are packaged up inside the JAR file -->
		<resources>
			<resource>
				<directory>${basedir}/src/java/</directory>
				<includes>
					<include>**/*.xml</include>
					<include>**/*.dtd</include>
					<include>**/*.properties</include>
				</includes>
				<filtering>false</filtering>
			</resource>
			<resource>
				<directory>${basedir}/resources</directory>
			</resource>
			<resource>
				<directory>${basedir}/src/tld</directory>
				<targetPath>META-INF</targetPath>
				<includes>
					<include>**/*.tld</include>
				</includes>
			</resource>
		</resources>
		<!-- Unit test cases -->
		<unitTestSourceDirectory>${basedir}/src/tests</unitTestSourceDirectory>
		<unitTest>
			<includes>
				<include>**/*Tests.java</include>
				<include>**/*Test.java</include>
				<include>**/*Suite.java</include>
			</includes>
			<excludes>
				<exclude>**/Abstract*Test.java</exclude>
			</excludes>
		</unitTest>
	</build>

</project>

