<?xml version="1.0" encoding="UTF-8"?>
<!-- =======================================================================
        Maven Project Configuration File

        The Geotools Project
            http://www.geotools.org/

        Version: $Id$
     ======================================================================= -->
<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>library</artifactId>
    <version>26.7</version>
  </parent>

  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
  <groupId>org.geotools</groupId>
  <artifactId>gt-coverage</artifactId>
  <packaging>jar</packaging>
  <name>Grid Coverage module</name>

  <description>Implementation of GridCoverage. Provides support
    for rasters and some image processing like reprojection.</description>

  <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>simboss</id>
      <name>Simone Giannecchini</name>
      <email>simone.giannecchini@geo-solutions.it</email>
      <organization>GeoSolutions S.A.S.</organization>
      <organizationUrl>http://www.geo-solutions.it</organizationUrl>
      <roles>
        <role>Java Developer</role>
        <role>Documentation</role>
        <role>Module Maintainer</role>
      </roles>
    </developer>
    <developer>
      <id>desruisseaux</id>
      <name>Martin Desruisseaux</name>
      <email>desruisseaux@users.sourceforge.net</email>
      <organization>Geomatys</organization>
      <organizationUrl>http://www.geomatys.fr/</organizationUrl>
      <roles>
        <role>retired Module Maintainer</role>
        <role>retired Java Developer</role>
      </roles>
      <timezone>+1</timezone>
    </developer>
    <developer>
      <id>bnordgren</id>
      <name>Bryce Nordgren</name>
      <email>bnordgren@fs.fed.us</email>
      <organization>USDA Forest Service</organization>
      <roles>
        <role>Java Developer</role>
      </roles>
    </developer>
    <developer>
      <id>alfa</id>
      <name>Alessio Fabiani</name>
      <email>alessio.fabiani@geo-solutions.it</email>
      <roles>
        <role>Java Developer</role>
      </roles>
    </developer>
  </developers>

  <properties>
    <moduleIdentifier>org.geotools.coverage</moduleIdentifier>
  </properties>

  <!-- =========================================================== -->
  <!--     Dependency Management                                   -->
  <!-- =========================================================== -->
  <dependencies>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-referencing</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-main</artifactId>
      <version>${project.version}</version>
    </dependency>
    <dependency>
      <groupId>org.locationtech.jts</groupId>
      <artifactId>jts-core</artifactId>
      <!-- The version number is specified in the parent POM. -->
    </dependency>
    <dependency>
      <groupId>javax.media</groupId>
      <artifactId>jai_imageio</artifactId>
      <!-- The version number is specified in the parent POM. -->
    </dependency>
    <dependency>
      <groupId>it.geosolutions.imageio-ext</groupId>
      <artifactId>imageio-ext-tiff</artifactId>
      <!-- The version number is specified in the parent POM. -->
    </dependency>

    <!--  JAI Tools -->
    <dependency>
      <groupId>org.jaitools</groupId>
      <artifactId>jt-zonalstats</artifactId>
    </dependency>
    <dependency>
      <groupId>org.jaitools</groupId>
      <artifactId>jt-utils</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>

    <!-- JAIExt -->
    <dependency>
      <groupId>it.geosolutions.jaiext.affine</groupId>
      <artifactId>jt-affine</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.algebra</groupId>
      <artifactId>jt-algebra</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.bandmerge</groupId>
      <artifactId>jt-bandmerge</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.bandselect</groupId>
      <artifactId>jt-bandselect</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.bandcombine</groupId>
      <artifactId>jt-bandcombine</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.border</groupId>
      <artifactId>jt-border</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.buffer</groupId>
      <artifactId>jt-buffer</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.crop</groupId>
      <artifactId>jt-crop</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.iterators</groupId>
      <artifactId>jt-iterators</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.lookup</groupId>
      <artifactId>jt-lookup</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.mosaic</groupId>
      <artifactId>jt-mosaic</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.nullop</groupId>
      <artifactId>jt-nullop</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.rescale</groupId>
      <artifactId>jt-rescale</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.scale</groupId>
      <artifactId>jt-scale</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.scale2</groupId>
      <artifactId>jt-scale2</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.stats</groupId>
      <artifactId>jt-stats</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.translate</groupId>
      <artifactId>jt-translate</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.utilities</groupId>
      <artifactId>jt-utilities</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.warp</groupId>
      <artifactId>jt-warp</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.zonal</groupId>
      <artifactId>jt-zonal</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.binarize</groupId>
      <artifactId>jt-binarize</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.format</groupId>
      <artifactId>jt-format</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.colorconvert</groupId>
      <artifactId>jt-colorconvert</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.errordiffusion</groupId>
      <artifactId>jt-errordiffusion</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.orderdither</groupId>
      <artifactId>jt-orderdither</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.colorindexer</groupId>
      <artifactId>jt-colorindexer</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.imagefunction</groupId>
      <artifactId>jt-imagefunction</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.piecewise</groupId>
      <artifactId>jt-piecewise</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.classifier</groupId>
      <artifactId>jt-classifier</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.rlookup</groupId>
      <artifactId>jt-rlookup</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.vectorbin</groupId>
      <artifactId>jt-vectorbin</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>org.locationtech.jts</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>it.geosolutions.jaiext.shadedrelief</groupId>
      <artifactId>jt-shadedrelief</artifactId>
      <exclusions>
        <exclusion>
          <artifactId>jts</artifactId>
          <groupId>com.vividsolutions</groupId>
        </exclusion>
      </exclusions>
    </dependency>

    <!-- Test dependencies -->
    <!--
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-shapefile</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
-->
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-epsg-hsql</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.geotools</groupId>
      <artifactId>gt-sample-data</artifactId>
      <version>${project.version}</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>javax.media</groupId>
      <artifactId>jai_codec</artifactId>
      <!-- The version number is specified in the parent POM. -->
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>commons-io</groupId>
      <artifactId>commons-io</artifactId>
    </dependency>
  </dependencies>

</project>
