<?xml version="1.0" encoding="UTF-8"?>

<!--
  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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>org.apache.sis</groupId>
    <artifactId>parent</artifactId>
    <version>0.7</version>
  </parent>
  <groupId>org.apache.sis.non-free</groupId>
  <artifactId>sis-epsg</artifactId>
  <version>0.7</version>
  <packaging>jar</packaging>

  <name>EPSG dataset for Apache SIS</name>
  <url>http://www.epsg.org</url>
  <description>
The EPSG geodetic dataset provides definitions for thousands of Coordinate Reference Systems (CRS),
 together with parameter values for thousands of Coordinate Operations between various pairs of CRS.
 This 'sis-epsg' module contains the SQL scripts for creating a local copy of EPSG geodetic dataset.
 EPSG is maintained by the IOGP Surveying &amp; Positioning Committee and reproduced in this module
 with identical content. See http://www.epsg.org/ for more information.
  </description>

  <licenses>
    <license>
      <name>EPSG terms of use</name>
      <url>http://www.epsg.org/TermsOfUse</url>
      <distribution>manual</distribution>
    </license>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>
      scm:svn:http://svn.apache.org/repos/asf/sis/data/non-free/sis-epsg
    </connection>
    <developerConnection>
      scm:svn:https://svn.apache.org/repos/asf/sis/data/non-free/sis-epsg
    </developerConnection>
    <url>http://svn.apache.org/viewvc/sis/data/non-free/sis-epsg</url>
  </scm>

  <developers>
    <developer>
      <name>Martin Desruisseaux</name>
      <id>desruisseaux</id>
      <email>martin.desruisseaux@geomatys.com</email>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.com/</organizationUrl>
      <timezone>+1</timezone>
      <roles>
        <role>Module Maintainer</role>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <configuration>
          <instructions>
            <Bundle-SymbolicName>org.apache.sis.referencing.epsg</Bundle-SymbolicName>
            <Require-Capability>osgi.extender;
            filter:="(osgi.extender=osgi.serviceloader.registrar)"</Require-Capability>
            <Provide-Capability>osgi.serviceloader;
            osgi.serviceloader=org.apache.sis.setup.InstallationResources</Provide-Capability>
          </instructions>
        </configuration>
      </plugin>
    </plugins>
  </build>

  <!--
    While this module declares a dependency to SIS 0.7, it can be used with 0.7-jdk6, 0.7-jdk7 or 0.7-jdk8 as well.
    It is up to the user to choose the Apache SIS version.
  -->
  <dependencies>
    <dependency>
      <groupId>org.apache.sis.core</groupId>
      <artifactId>sis-referencing</artifactId>
      <version>${project.version}</version>
      <scope>provided</scope>
    </dependency>
  </dependencies>
</project>
