1 <?xml version="1.0" encoding="UTF-8"?> 2 <!-- ======================================================================= 3 Maven Project Configuration File 4 5 The Geotools Project 6 http://www.geotools.org/ 7 8 Version: $Id$ 9 ======================================================================= --> 10 <project xmlns="http://maven.apache.org/POM/4.0.0" 11 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 12 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 13 http://maven.apache.org/maven-v4_0_0.xsd"> 14 <modelVersion>4.0.0</modelVersion> 15 16 <parent> 17 <groupId>org.geotools</groupId> 18 <artifactId>unsupported</artifactId> 19 <version>24.1</version> 20 </parent> 21 22 23 <!-- =========================================================== --> 24 <!-- Module Description --> 25 <!-- =========================================================== --> 26 <groupId>org.geotools</groupId> 27 <artifactId>gt-process</artifactId> 28 <packaging>jar</packaging> 29 <name>Process</name> 30 31 32 <description> 33 An API for creating custom processes/operations plus a 34 collection of pre-written processes including vector/raster 35 conversion. 36 </description> 37 38 <licenses> 39 <license> 40 <name>Lesser General Public License (LGPL)</name> 41 <url>http://www.gnu.org/copyleft/lesser.txt</url> 42 <distribution>repo</distribution> 43 </license> 44 </licenses> 45 46 47 <!-- =========================================================== --> 48 <!-- Developers and Contributors --> 49 <!-- =========================================================== --> 50 <developers> 51 <developer> 52 <id>gdavis</id> 53 <name>Graham Davis</name> 54 <email>gdavis@refractions.net</email> 55 <organization>Refractions Research</organization> 56 <roles> 57 <role>Module Maintainer</role> 58 <role>Java Developer</role> 59 </roles> 60 </developer> 61 <developer> 62 <id>mbedward</id> 63 <name>Michael Bedward</name> 64 <email>michael.bedward@gmail.com</email> 65 <timezone>+10</timezone> 66 <roles> 67 <role>Java Developer</role> 68 <role>Module Maintainer</role> 69 </roles> 70 </developer> 71 </developers> 72 73 74 <!-- =========================================================== --> 75 <!-- Dependency Mangement --> 76 <!-- =========================================================== --> 77 <dependencies> 78 <dependency> 79 <groupId>org.jaitools</groupId> 80 <artifactId>jt-utils</artifactId> 81 <version>${jt.version}</version> 82 <exclusions> 83 <exclusion> 84 <groupId>org.locationtech.jts</groupId> 85 <artifactId>jts</artifactId> 86 </exclusion> 87 </exclusions> 88 </dependency> 89 <dependency> 90 <groupId>org.geotools</groupId> 91 <artifactId>gt-main</artifactId> 92 <version>${project.version}</version> 93 </dependency> 94 <dependency> 95 <groupId>org.geotools</groupId> 96 <artifactId>gt-shapefile</artifactId> 97 <version>${project.version}</version> 98 <scope>test</scope> 99 </dependency> 100 <dependency> 101 <groupId>javax.media</groupId> 102 <artifactId>jai_imageio</artifactId> 103 <!-- The version number is specified in the parent POM. --> 104 </dependency> 105 106 <!-- Test dependencies --> 107 <dependency> 108 <groupId>org.geotools</groupId> 109 <artifactId>gt-sample-data</artifactId> 110 <version>${project.version}</version> 111 <scope>test</scope> 112 </dependency> 113 <dependency> 114 <groupId>javax.media</groupId> 115 <artifactId>jai_codec</artifactId> 116 <!-- The version number is specified in the parent POM. --> 117 <scope>test</scope> 118 </dependency> 119 </dependencies> 120 121 </project>