<?xml version="1.0" encoding="UTF-8"?>
|
<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>com.ximple.eofms</groupId>
|
<artifactId>ximple-dgnjobs</artifactId>
|
<version>0.8.0</version>
|
</parent>
|
|
<groupId>com.ximple.eofms</groupId>
|
<artifactId>ximple-spatialjob</artifactId>
|
<version>0.8.0</version>
|
<packaging>jar</packaging>
|
<name>ximple-spatialjob</name>
|
<url>http://www.ximple.com.tw</url>
|
|
<properties>
|
<xdgnio.version>0.7.0</xdgnio.version>
|
</properties>
|
|
<description>
|
Ximple Spatial Data Job for Quartz
|
</description>
|
|
<organization>
|
<name>Ximple</name>
|
<url>http://www.ximple.com.tw</url>
|
</organization>
|
|
<inceptionYear>2008</inceptionYear>
|
|
<developers>
|
<developer>
|
<name>Kuo-Feng Kao</name>
|
<id>ulysseskao</id>
|
<email>ulysseskao@ximple.com.tw</email>
|
<organization>Ximple</organization>
|
<roles>
|
<role>Java Developer</role>
|
</roles>
|
</developer>
|
</developers>
|
|
<contributors>
|
</contributors>
|
|
<!-- =========================================================== -->
|
<!-- Dependencies to be inherited by all modules. -->
|
<!-- =========================================================== -->
|
<dependencies>
|
<dependency>
|
<artifactId>quartz</artifactId>
|
<groupId>opensymphony</groupId>
|
</dependency>
|
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-shapefile</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-sample-data</artifactId>
|
<scope>test</scope>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-data</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-jdbc</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-postgis</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-oracle-spatial</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-mysql</artifactId>
|
</dependency>
|
|
<!-- because main and sample-data depend on referencing we need a tie breaker -->
|
<dependency>
|
<groupId>org.geotools</groupId>
|
<artifactId>gt2-referencing</artifactId>
|
</dependency>
|
|
<!-- We need this to make the referencing module useful -->
|
<dependency>
|
<artifactId>gt2-epsg-hsql</artifactId>
|
<groupId>org.geotools</groupId>
|
<scope>test</scope>
|
</dependency>
|
|
<dependency>
|
<artifactId>jdom</artifactId>
|
<groupId>jdom</groupId>
|
</dependency>
|
|
<dependency>
|
<artifactId>velocity</artifactId>
|
<groupId>org.apache.velocity</groupId>
|
</dependency>
|
|
<!-- ORACLE -->
|
<dependency>
|
<groupId>com.oracle</groupId>
|
<artifactId>ojdbc5</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.oracle</groupId>
|
<artifactId>sdoapi</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.oracle</groupId>
|
<artifactId>sdotype</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>com.oracle</groupId>
|
<artifactId>sdoutl</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>postgresql</groupId>
|
<artifactId>postgresql</artifactId>
|
</dependency>
|
<dependency>
|
<groupId>org.postgis</groupId>
|
<artifactId>postgis-driver</artifactId>
|
</dependency>
|
|
<dependency>
|
<groupId>mysql</groupId>
|
<artifactId>mysql-connector-java</artifactId>
|
</dependency>
|
|
<!-- Ximple Library -->
|
<dependency>
|
<groupId>com.ximple.eofms</groupId>
|
<artifactId>ximple-dgnio</artifactId>
|
<version>${xdgnio.version}</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
</plugins>
|
<resources>
|
</resources>
|
</build>
|
</project>
|