metadata
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.geotoolkit</groupId>
<artifactId>metadata</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>modules</artifactId>
<version>3.20-geoapi-3.0</version>
</parent>
<!-- ===========================================================
Module Description
=========================================================== -->
<groupId>org.geotoolkit</groupId>
<artifactId>metadata</artifactId>
<packaging>pom</packaging>
<name>Metadata</name>
<description>
Group of modules related to handling metadata. The "geotk-metadata" sub-module contains the core
classes and an implementation of the ISO 19115 standard. The "geotk-metadata-sql" sub-module provides
services for metadata storage in a SQL database. The "geotk-metadata-fra" sub-module is a profile of
ISO 19115.
</description>
<!-- ===========================================================
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>Administrator</role>
</roles>
</developer>
<developer>
<name>Cédric Briançon</name>
<id>cedricbr</id>
<email>cedric.briancon@geomatys.fr</email>
<organization>Geomatys</organization>
<organizationUrl>http://www.geomatys.com/</organizationUrl>
<timezone>+1</timezone>
<roles>
<role>Administrator</role>
</roles>
</developer>
</developers>
<!-- ===========================================================
Dependencies to be inherited by all modules
=========================================================== -->
<dependencies>
<dependency>
<groupId>org.opengis</groupId>
<artifactId>geoapi</artifactId>
</dependency>
<dependency>
<groupId>org.geotoolkit</groupId>
<artifactId>geotk-utility</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.opengis</groupId>
<artifactId>geoapi-conformance</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<!-- ===========================================================
Modules included in the build
=========================================================== -->
<modules>
<module>geotk-metadata</module>
<module>geotk-metadata-fra</module>
<module>geotk-metadata-sql</module>
</modules>
</project>