geotk-epsg
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.geotoolkit</groupId>
<artifactId>geotk-epsg</artifactId>
<version>3.20-geoapi-3.0</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================
Maven Project Configuration File
The Geotoolkit.org Project
http://www.geotoolkit.org/
======================================================================= -->
<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.geotoolkit</groupId>
<artifactId>referencing</artifactId>
<version>3.20-geoapi-3.0</version>
</parent>
<!-- ===========================================================
Module Description
=========================================================== -->
<groupId>org.geotoolkit</groupId>
<artifactId>geotk-epsg</artifactId>
<packaging>jar</packaging>
<name>EPSG database</name>
<description>
Provides the SQL script files for creating a local EPSG database
when first needed.
</description>
<licenses>
<license>
<name>EPSG terms of use</name>
<url>http://www.epsg-registry.org/help/xml/Terms_Of_Use.html</url>
<distribution>manual</distribution>
</license>
<license>
<name>Lesser General Public License (LGPL)</name>
<url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<!-- ===========================================================
Developers and Contributors
=========================================================== -->
<developers>
<developer>
<name>Martin Desruisseaux</name>
<id>desruisseaux</id>
<email>martin.desruisseaux@geomatys.fr</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>
<!-- ===========================================================
JAR packaging
=========================================================== -->
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>org.geotoolkit.internal.referencing.EpsgCreatorCommands</mainClass>
</manifest>
</archive>
</configuration>
</plugin>
</plugins>
</build>
<!-- ===========================================================
Dependency Management
=========================================================== -->
<dependencies>
<dependency>
<groupId>org.geotoolkit</groupId>
<artifactId>geotk-referencing</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.apache.derby</groupId>
<artifactId>derby</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>