<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.6.0</version>
|
</parent>
|
|
|
<groupId>com.ximple.eofms</groupId>
|
<artifactId>ximple-jobcarrier</artifactId>
|
<version>0.6.0</version>
|
<packaging>jar</packaging>
|
<name>ximple-jobcarrier</name>
|
<url>http://maven.apache.org</url>
|
|
<properties>
|
<xdgnio.version>0.6.0</xdgnio.version>
|
</properties>
|
|
<scm>
|
<connection>
|
scm:svn:http://www.ximple.com.tw/svn/xeofms/xspatialjob/truck/
|
</connection>
|
<url>http://www.ximple.com.tw/svn/xeofms/xspatialjob/truck/</url>
|
</scm>
|
|
<description>
|
Ximple Job Carrier 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>javax.transaction</groupId>
|
<artifactId>jta</artifactId>
|
<version>1.0.1B</version>
|
</dependency>
|
|
<!-- Ximple Library -->
|
<dependency>
|
<artifactId>ximple-dgnio</artifactId>
|
<groupId>com.ximple.eofms</groupId>
|
<version>${xdgnio.version}</version>
|
</dependency>
|
<dependency>
|
<artifactId>ximple-spatialjob</artifactId>
|
<groupId>com.ximple.eofms</groupId>
|
<version>${xdgnio.version}</version>
|
</dependency>
|
</dependencies>
|
|
<build>
|
<plugins>
|
<!-- ======================================================= -->
|
<!-- JAR packaging. -->
|
<!-- ======================================================= -->
|
<plugin>
|
<groupId>org.apache.maven.plugins</groupId>
|
<artifactId>maven-jar-plugin</artifactId>
|
<configuration>
|
<archive>
|
<manifest>
|
<mainClass>com.ximple.eofms.XQuartzJobCarrier</mainClass>
|
<addClasspath>true</addClasspath>
|
</manifest>
|
</archive>
|
</configuration>
|
</plugin>
|
<!-- ======================================================= -->
|
<!-- exec jar. -->
|
<!-- ======================================================= -->
|
<plugin>
|
<!--
|
Use maven from the command line:
|
mvn exec:java -Dexec.mainClass="com.ximple.eofms.XQuartzJobCarrier"
|
-->
|
<artifactId>exec-maven-plugin</artifactId>
|
<groupId>org.codehaus.mojo</groupId>
|
<!--
|
<executions>
|
<execution>
|
<phase>package</phase>
|
<goals>
|
<goal>run</goal>
|
</goals>
|
</execution>
|
</executions>
|
-->
|
<configuration>
|
<mainClass>com.ximple.eofms.XQuartzJobCarrier</mainClass>
|
</configuration>
|
<!--
|
<dependencies>
|
<dependency>
|
<groupId>com.ximple.eofms</groupId>
|
<artifactId>ximple-jobcarrier</artifactId>
|
<version>0.0.1</version>
|
<type>jar</type>
|
</dependency>
|
</dependencies>
|
-->
|
</plugin>
|
</plugins>
|
<resources>
|
</resources>
|
</build>
|
|
</project>
|