<?xml version="1.0" encoding="UTF-8"?>
	<!-- $Id: pom.xml 1061 2009-03-11 15:01:39Z filippo.deluca $ -->
<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>
	<groupId>net.sourceforge.wurfl</groupId>
	<artifactId>wall</artifactId>
	<version>1.0</version>

	<name>wall</name>
	<url>http://wurfl.sourceforge.net/java/</url>
	<description>The WALL Tag library</description>
	<inceptionYear>2008</inceptionYear>

	<licenses>
		<license>
			<name>GNU General Public License (GPL), version 2.0</name>
			<url>http://www.gnu.org/licenses/gpl-2.0.txt</url>
			<comments>Read the COPYING file</comments>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<mailingLists>
		<mailingList>
			<name>wmlprogramming</name>
			<post>wmlprogramming@yahoogroups.com</post>
			<archive>http://tech.groups.yahoo.com/group/wmlprogramming/messages</archive>
		</mailingList>
	</mailingLists>
	
	<issueManagement>
		<system>Trac</system>
		<url>http://dev.wurflpro.com/projects/wall/</url>
	</issueManagement>

	<organization>
		<name>WURFL-Pro srl</name>
		<url>http://www.wurflpro.com</url>
	</organization>


	<!-- Developers  -->
	<developers>
		<developer>
			<id>luca.passani</id>
			<name>Luca Passani</name>
			<email>luca.passani@wurflpro.it</email>
			<timezone>+1</timezone>
			<organization>WURFL-Pro srl</organization>
			<roles>
				<role>Project Manager</role>
				<role>Original Developer</role>
			</roles>
		</developer>
		<developer>
			<id>asres.fantayeneh</id>
			<name>Asres Gisaw Fantayeneh</name>
			<email>asres.fantayeneh@wurflpro.it</email>
			<timezone>0</timezone>
			<organization>WURFL-Pro srl</organization>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
		<developer>
			<id>filippo.deluca</id>
			<name>Filippo De Luca</name>
			<email>filippo.deluca@wurflpro.it</email>
			<timezone>+1</timezone>
			<organization>WURFL-Pro srl</organization>
			<roles>
				<role>Developer</role>
			</roles>
		</developer>
	</developers>

	<scm>
		<connection>scm:svn:https://dev.wurflpro.com/svn/wurflpro/wall/core/tags/wall-1.0</connection>
		<developerConnection>scm:svn:https://dev.wurflpro.com/svn/wurflpro/wall/core/tags/wall-1.0</developerConnection>
		<url>https://dev.wurflpro.com/svn/wurflpro/wall/core/tags/wall-1.0</url>
	</scm>

	<distributionManagement>
		<repository>
			<id>public-repository.wurflpro.com</id>
			<name>WURFL-Pro Public Repository</name>
			<url>http://dev.wurflpro.com/nexus/content/repositories/public-releases/</url>
		</repository>
		<snapshotRepository>
			<id>public-snapshot.wurflpro.com</id>
			<name>WURFL-Pro Public Snapshot Repository</name>
			<url>http://dev.wurflpro.com/nexus/content/repositories/public-snapshot/</url>
		</snapshotRepository>
	</distributionManagement>

	<dependencies>
		<dependency>
			<groupId>commons-collections</groupId>
			<artifactId>commons-collections</artifactId>
			<version>3.2</version>
		</dependency>
		<dependency>
			<groupId>commons-lang</groupId>
			<artifactId>commons-lang</artifactId>
			<version>2.3</version>
		</dependency>
		<dependency>
			<groupId>commons-logging</groupId>
			<artifactId>commons-logging</artifactId>
			<version>1.1</version>
			<exclusions>
				<exclusion>
					<artifactId>logkit</artifactId>
					<groupId>logkit</groupId>
				</exclusion>
				<exclusion>
					<artifactId>avalon-framework</artifactId>
					<groupId>avalon-framework</groupId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>backport-util-concurrent</groupId>
			<artifactId>backport-util-concurrent</artifactId>
			<version>3.0</version>
			<scope>compile</scope>
		</dependency>

		<dependency>
			<groupId>net.sourceforge.wurfl</groupId>
			<artifactId>wurfl</artifactId>
			<version>[1.0,1.1)</version>
			<exclusions>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-support</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-dao</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-jdbc</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-core</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-beans</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-context</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-support</artifactId>
				</exclusion>
				<exclusion>
					<groupId>org.springframework</groupId>
					<artifactId>spring-web</artifactId>
				</exclusion>
			</exclusions>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.3</version>
			<scope>provided</scope>
		</dependency>

		<!-- Test -->
		<dependency>
			<groupId>org.testng</groupId>
			<artifactId>testng</artifactId>
			<version>5.7</version>
			<classifier>jdk14</classifier>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymock</artifactId>
			<version>2.3</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.easymock</groupId>
			<artifactId>easymockclassextension</artifactId>
			<version>2.3</version>
			<scope>test</scope>
		</dependency>

	</dependencies>
	<build>

		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<configuration>
					<source>1.4</source>
					<target>1.4</target>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-resources-plugin</artifactId>
				<configuration>
					<encoding>UTF-8</encoding>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-eclipse-plugin</artifactId>
				<configuration>
					<downloadSources>true</downloadSources>
					<downloadJavadocs>false</downloadJavadocs>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-surefire-plugin</artifactId>
				<configuration>
					<suiteXmlFiles>
						<suiteXmlFile>
							src/test/resources/testng.xml
						</suiteXmlFile>
					</suiteXmlFiles>
				</configuration>
			</plugin>

			<plugin>
				<groupId>com.google.code.maven-license-plugin</groupId>
				<artifactId>maven-license-plugin</artifactId>
				<version>1.4.0</version>
				<configuration>
					<header>src/main/etc/header.txt</header>
					<properties>
						<years>${project.inceptionYear}-2009</years>
						<organization.name>${project.organization.name}</organization.name>
					</properties>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-site-plugin</artifactId>
				<configuration>
					<outputEncoding>UTF-8</outputEncoding>
				</configuration>
			</plugin>

		</plugins>
	</build>

	<reporting>
		<plugins>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-surefire-report-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-pmd-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-clover-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-jxr-plugin</artifactId>
			</plugin>
			<plugin>
				<artifactId>maven-changelog-plugin</artifactId>
			</plugin>
			<plugin>
				<groupId>org.codehaus.mojo</groupId>
				<artifactId>findbugs-maven-plugin</artifactId>
				<configuration>
					<threshold>Normal</threshold>
				</configuration>
			</plugin>
			<plugin>
				<artifactId>maven-changes-plugin</artifactId>
				<configuration>
					<tracUser>maven</tracUser>
					<tracPassword>mavenwurfl</tracPassword>
					<query>status=closed&amp;order=priority&amp;component=core&amp;version=1.0&amp;milestone=1.0</query>
			    	<outputEncoding>UTF-8</outputEncoding>
			    </configuration>
			</plugin>
		</plugins>
	</reporting>

	<profiles>

		<profile>
			<id>source</id>

			<build>
				<plugins>

					<plugin>
						<artifactId>maven-assembly-plugin</artifactId>
						<configuration>
							<descriptorRefs>
								<descriptorRef>src</descriptorRef>
							</descriptorRefs>
						</configuration>
					</plugin>

				</plugins>
			</build>
		</profile>

		<profile>
			<id>ant</id>

			<build>
				<plugins>

					<plugin>
						<artifactId>maven-assembly-plugin</artifactId>
						<configuration>
							<descriptors>
								<descriptor>
									src/main/assembly/ant.xml
                        </descriptor>
							</descriptors>
						</configuration>
					</plugin>

				</plugins>
			</build>
		</profile>

	</profiles>

</project>
