<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">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-web-libs</artifactId>
<version>3.0</version>
</parent>
<artifactId>push-manager-server</artifactId>
<version>1.0</version>
<packaging>war</packaging>
<dependencies>
<!-- central -->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
</dependency>
<dependency>
<groupId>javax.transaction</groupId>
<artifactId>jta</artifactId>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
</dependency>
<dependency>
<groupId>opensymphony</groupId>
<artifactId>quartz-all</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<dependency>
<groupId>org.beetl</groupId>
<artifactId>beetl-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</dependency>
<dependency>
<groupId>org.jdom</groupId>
<artifactId>jdom</artifactId>
</dependency>
<dependency>
<groupId>commons-collections</groupId>
<artifactId>commons-collections</artifactId>
</dependency>
<dependency>
<groupId>org.apache.mina</groupId>
<artifactId>mina-integration-beans</artifactId>
<version>2.0.0-RC1</version>
</dependency>
<!-- ipu jar -->
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-basic</artifactId>
</dependency>
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-common</artifactId>
</dependency>
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-server-web</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-data</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-cache</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-database</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-apache</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-common</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-sqlite-jdbc</artifactId>
</dependency>
<dependency>
<groupId>com.ai.wade</groupId>
<artifactId>wade-mobile-push</artifactId>
<version>1.0</version>
</dependency>
<!-- 3rd party jar -->
<dependency>
<groupId>com.amail</groupId>
<artifactId>amail</artifactId>
</dependency>
<dependency>
<groupId>com.zxing</groupId>
<artifactId>zxing</artifactId>
</dependency>
<dependency>
<groupId>ojdbc</groupId>
<artifactId>ojdbc</artifactId>
</dependency>
<dependency>
<groupId>com</groupId>
<artifactId>java_memcache-release</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
<finalName>push-manager-server</finalName>
</build>
</project>
|