Author: jdeolive
Date: 2012-01-04 19:36:41 -0800 (Wed, 04 Jan 2012)
New Revision: 38460
Modified:
trunk/modules/unsupported/wps/pom.xml
Log:
fixing dependency on non existing postgis module, switched to jdbc-postgis
Modified: trunk/modules/unsupported/wps/pom.xml
===================================================================
--- trunk/modules/unsupported/wps/pom.xml 2012-01-05 03:32:35 UTC (rev 38459)
+++ trunk/modules/unsupported/wps/pom.xml 2012-01-05 03:36:41 UTC (rev 38460)
@@ -96,14 +96,14 @@
<groupId>org.geotools</groupId>
<artifactId>gt-main</artifactId>
<version>${project.version}</version>
- </dependency>
- <dependency>
- <groupId>org.geotools</groupId>
- <artifactId>gt-postgis</artifactId>
- <version>${project.version}</version>
- <scope>test</scope>
</dependency>
<dependency>
+ <groupId>org.geotools.jdbc</groupId>
+ <artifactId>gt-jdbc-postgis</artifactId>
+ <version>${project.version}</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
<groupId>org.geotools.ogc</groupId>
<artifactId>net.opengis.wps</artifactId>
<version>${project.version}</version>
|