<?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>25.0</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>

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

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

  <!-- =========================================================== -->
  <!--     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>
            <groupId>org.locationtech.jts</groupId>
            <artifactId>jts</artifactId>
         </exclusion>
       </exclusions>
     </dependency>

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