<?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================    
        Maven Project Configuration File                                        
                                                                                
        The Geotools Project                                                    
            http://www.geotools.org/                                            
                                                                                
        Version: $Id: pom.xml 30851 2008-07-03 15:04:12Z cedricbr $              
     ======================================================================= -->
  <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>

  <parent>
    <groupId>org.geotools</groupId>
    <artifactId>unsupported</artifactId>
    <version>8.8-ENTERPRISE</version>
  </parent>


  <!-- =========================================================== -->
  <!--   Properties and Profiles                                   -->
  <!--       explanation of their effect.                          -->
  <!--                                                             -->
  <!--   Available profiles are:                                   -->
  <!--                                                             -->
  <!--     nameOfprofile      Explantion of what the profile does  -->
  <!--                        for the user.                        -->
  <!--                                                             -->
  <!--     Example:           mvn -PnameOfprofile install          -->
  <!--                                                             -->
  <!--     Note ...                                                -->
  <!-- =========================================================== -->
  <!-- Default setting of properties -->
  <!--
  <properties>
    <nameOfproperty>valueOfsetting</nameOfproperty>
  </properties>
  -->

  <!-- Profiles set on the command-line to override default properties. -->
  <!--
  <profiles>
    <profile>
      <id>nameOfprofile</id>
      <properties>
        <nameOfproperty>valueOfsetting</nameOfproperty>
      </properties>
    </profile>
  </profiles>
  -->


  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools</groupId>
  <artifactId>gt-gpx</artifactId>
  <packaging>jar</packaging>
  <name>GPS eXchange Data Store</name>

  <description>
    GPS eXchange (gpx) is an xml data format used by many GPS managing application.
    This data store uses the ml-gpx parsing/encoding module to load/save gpx files,
    and implements datasource that provides access to the content. 
  </description>

  <!-- Pick your license. -->
  <licenses>
    <license>
      <name>Lesser General Public License (LGPL)</name>
      <url>http://www.gnu.org/copyleft/lesser.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>


  <!-- =========================================================== -->
  <!--     Developers and Contributors                             -->
  <!-- =========================================================== -->
  <developers>
    <developer>
      <id>buci</id>
      <name>Peter Bolla</name>
      <email>buci@metacortex.hu</email>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>


  <!-- =========================================================== -->
  <!--     Dependency Mangement                                    -->
  <!-- =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-api</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-main</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-xml-gpx</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-sample-data</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
  </dependencies>


</project>
