Skip to content

Commit

Permalink
Improved Oracle support, and added online tests for h2, postgis, oracle
Browse files Browse the repository at this point in the history
  • Loading branch information
aaime committed Sep 30, 2015
1 parent a9e3f07 commit d071964
Show file tree
Hide file tree
Showing 9 changed files with 736 additions and 600 deletions.
133 changes: 83 additions & 50 deletions src/community/wps-jdbc/pom.xml
@@ -1,52 +1,85 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" <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"> 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> <modelVersion>4.0.0</modelVersion>
<groupId>org.geoserver.community</groupId> <groupId>org.geoserver.community</groupId>
<artifactId>gs-wps-jdbc</artifactId> <artifactId>gs-wps-jdbc</artifactId>
<name>WPS cluster on jdbc datastores</name> <name>WPS cluster on jdbc datastores</name>


<parent> <parent>
<groupId>org.geoserver</groupId> <groupId>org.geoserver</groupId>
<artifactId>community</artifactId> <artifactId>community</artifactId>
<version>2.9-SNAPSHOT</version> <version>2.9-SNAPSHOT</version>
</parent> </parent>


<dependencies> <profiles>
<dependency> <profile>
<groupId>org.geoserver.extension</groupId> <id>oracle.jdbc-true</id>
<artifactId>gs-wps-core</artifactId> <activation>
<version>${gs.version}</version> <property>
</dependency> <name>oracle</name>
<dependency> </property>
<groupId>org.geoserver.extension</groupId> </activation>
<artifactId>gs-wps-core</artifactId> <dependencies>
<classifier>tests</classifier> <dependency>
<scope>test</scope> <artifactId>ojdbc7</artifactId>
<version>${gs.version}</version> <groupId>com.oracle</groupId>
</dependency> <version>12.1.0.2</version>
<dependency> </dependency>
<groupId>org.geoserver</groupId> </dependencies>
<artifactId>gs-main</artifactId> </profile>
<classifier>tests</classifier> </profiles>
<scope>test</scope>
</dependency> <dependencies>
<dependency> <dependency>
<groupId>org.geotools.jdbc</groupId> <groupId>org.geoserver.extension</groupId>
<artifactId>gt-jdbc-postgis</artifactId> <artifactId>gs-wps-core</artifactId>
<scope>test</scope> <version>${gs.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.geotools</groupId> <groupId>org.geotools</groupId>
<artifactId>gt-sample-data</artifactId> <artifactId>gt-transform</artifactId>
<scope>test</scope> <version>${gt.version}</version>
<version>${gt.version}</version> </dependency>
</dependency> <dependency>
<dependency> <groupId>org.geoserver.extension</groupId>
<groupId>org.geotools</groupId> <artifactId>gs-wps-core</artifactId>
<artifactId>gt-wps</artifactId> <classifier>tests</classifier>
<version>${gt.version}</version> <scope>test</scope>
</dependency> <version>${gs.version}</version>

</dependency>
</dependencies> <dependency>

<groupId>org.geoserver</groupId>
<artifactId>gs-main</artifactId>
<classifier>tests</classifier>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.geotools.jdbc</groupId>
<artifactId>gt-jdbc-postgis</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.geotools.jdbc</groupId>
<artifactId>gt-jdbc-h2</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.geotools.jdbc</groupId>
<artifactId>gt-jdbc-oracle</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-sample-data</artifactId>
<scope>test</scope>
<version>${gt.version}</version>
</dependency>
<dependency>
<groupId>org.geotools</groupId>
<artifactId>gt-wps</artifactId>
<version>${gt.version}</version>
</dependency>

</dependencies>

</project> </project>

0 comments on commit d071964

Please sign in to comment.