<?xml version="1.0"?>
<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor 
	license agreements. See the NOTICE file distributed with this work for additional 
	information regarding copyright ownership. The ASF licenses this file to 
	You under the Apache License, Version 2.0 (the "License"); you may not use 
	this file except in compliance with the License. You may obtain a copy of 
	the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required 
	by applicable law or agreed to in writing, software distributed under the 
	License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS 
	OF ANY KIND, either express or implied. See the License for the specific 
	language governing permissions and limitations under the License. 
	-->
<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>org.apache.wookie</groupId> 
  <artifactId>wookie-parser</artifactId>
  <packaging>jar</packaging>
  <version>0.14</version>
  <name>Apache Wookie parser</name>
  <description>Apache Wookie W3C widget parser</description>
  <licenses>
	<license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <url>http://wookie.apache.org/wookie/</url>
  <inceptionYear>2009</inceptionYear>
    
  <scm>
	<connection>scm:svn:http://svn.apache.org/repos/asf/wookie/tags/0.14/parser</connection>
	<developerConnection>scm:svn:https://svn.apache.org/repos/asf/wookie/tags/0.14/parser/</developerConnection>
	<url>http://svn.apache.org/viewvc/wookie/tags/0.14/parser/</url>
  </scm>
  
  <mailingLists>
	<mailingList>
		<name>Wookie Developer List</name>
		<subscribe>dev-subscribe@wookie.apache.org</subscribe>
		<unsubscribe>dev-unsubscribe@wookie.apache.org</unsubscribe>
		<post>mailto:dev@wookie.apache.org</post>
		<archive>http://mail-archives.apache.org/mod_mbox/wookie-dev/</archive>
	</mailingList>
  </mailingLists>

  <issueManagement>
	<url>https://issues.apache.org/jira/browse/WOOKIE</url>
  </issueManagement>

  <developers>
    <developer>
      <id>mfranklin</id>
      <name>Matt Franklin</name>
      <email>mfranklin@mitre.org</email>
      <timezone>-5</timezone>
      <organization>The MITRE Corporation</organization>
      <organizationUrl>http://www.mitre.org</organizationUrl>
      <roles>
        <role>committer</role>
        <role>PMC member</role>
      </roles>
    </developer>
	<developer>
		<id>ate</id>
		<name>Ate Douma</name>
		<email>ate@douma.nu</email>
		<timezone>+1</timezone>
		<organization>Hippo</organization>
		<organizationUrl>http://www.onehippo.com</organizationUrl>
		<roles>
			<role>PMC member</role>
		</roles>
	</developer>
	<developer>
		<id>rgardler</id>
		<name>Ross Gardler</name>
		<email>rgardler@opendirective.com</email>
		<timezone>0</timezone>
		<organization>Opendirective</organization>
		<organizationUrl>http://www.opendirective.com</organizationUrl>
		<roles>
			<role>committer</role>
			<role>PMC member</role>
		</roles>
	</developer>	
	<developer>
		<id>psharples</id>
		<name>Paul Sharples</name>
		<email>psharples@apache.org</email>
		<timezone>0</timezone>
		<organization>The University of Bolton</organization>
		<organizationUrl>http://www.bolton.ac.uk</organizationUrl>
		<roles>
			<role>committer</role>
			<role>release manager</role>
			<role>PMC member</role>
		</roles>
	</developer>
	<developer>
		<id>scottbw</id>
		<name>Scott Wilson</name>
		<email>scottbw@apache.org</email>
		<timezone>0</timezone>
		<organization>The University of Bolton</organization>
		<organizationUrl>http://www.bolton.ac.uk</organizationUrl>
		<roles>
			<role>committer</role>
			<role>PMC member</role>
		</roles>
	</developer>
	<developer>
		<id>raido</id>
		<name>Raido Kuli</name>
		<email>raido@apache.org</email>
		<timezone>0</timezone>
		<roles>
			<role>committer</role>
			<role>PMC member</role>
		</roles>
	</developer>
	<developer>
		<id>hmt</id>
		<name>Hoang Minh Tien</name>
		<email>hmt@apache.org</email>
		<timezone>0</timezone>
		<roles>
			<role>committer</role>
			<role>PMC member</role>
		</roles>
	</developer>
	<developer>
		<id>krispopat</id>
		<name>Kris Popat</name>
		<email>krispopat@apache.org</email>
		<timezone>0</timezone>
		<roles>
			<role>committer</role>
			<role>PMC member</role>
		</roles>
	</developer>
  </developers>    
  <dependencies>
    <dependency>
      <groupId>com.ibm.icu</groupId>
      <artifactId>icu4j</artifactId>
      <version>4.6.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-logging</groupId>
      <artifactId>commons-logging</artifactId>
      <version>1.1.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-log4j12</artifactId>
      <version>1.6.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-lang</groupId>
      <artifactId>commons-lang</artifactId>
      <version>2.4</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-compress</artifactId>
      <version>1.0</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
      <version>2.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>commons-httpclient</groupId>
      <artifactId>commons-httpclient</artifactId>
      <version>3.0.1</version>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jdom</groupId>
      <artifactId>jdom</artifactId>
      <version>1.1</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
