<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-server-libs</artifactId>
<version>3.0</version>
</parent>
<artifactId>display-server</artifactId>
<packaging>war</packaging>
<name>展示平台</name>
<description>3.0以后的展示平台工程全部支持Maven和Ant两种构建方式</description>
<dependencies>
<!-- 公共必选依赖 -->
<!-- Central jar -->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
</dependency>
<dependency>
<groupId>jaxen</groupId>
<artifactId>jaxen</artifactId>
</dependency>
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
</dependency>
<dependency>
<groupId>org.beetl</groupId>
<artifactId>beetl-core</artifactId>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
</dependency>
<!-- 3rd party jar -->
<dependency>
<groupId>com</groupId>
<artifactId>java_memcache-release</artifactId>
</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>
<version>3.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-spring-boot</artifactId>
</dependency>
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-file-system</artifactId>
</dependency>
<dependency>
<groupId>com.ai.ipu</groupId>
<artifactId>ipu-cache</artifactId>
<version>${ipu}</version>
</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>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
</dependency>
<dependency>
<groupId>commons-dbcp</groupId>
<artifactId>commons-dbcp</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
</dependency>
<!-- 额外依赖 -->
</dependencies>
<build>
<plugins>
<!-- clean中间文件 -->
<plugin>
<artifactId>maven-clean-plugin</artifactId>
</plugin>
<!-- 复制资源 -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
</plugin>
<!-- 编译 -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
<!-- 生成文件版本号和文件加密 -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
</plugin>
</plugins>
<finalName>display</finalName>
</build>
</project>
|