<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>
<groupId>ipu</groupId>
<artifactId>ipu-server-lib</artifactId>
<version>1.0</version>
<packaging>pom</packaging>
<name>ipu-server-lib</name>
<!-- 定义公共变量 -->
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk>1.6.0</jdk>
<encoding>UTF-8</encoding>
<junit>3.8.1</junit>
<servlet-api>2.5</servlet-api>
<log4j>1.2.8</log4j>
<unirest-java>1.3.8</unirest-java>
<dom4j>1.6.1</dom4j>
<commons-lang3>3.4</commons-lang3>
<maven-resources-plugin>2.6</maven-resources-plugin>
<maven-compiler-plugin>2.5.1</maven-compiler-plugin>
<jar-path>${project.basedir}/libs</jar-path>
<jsoup>1.7.2</jsoup>
<beetl-core>2.2.3</beetl-core>
<velocity>1.7</velocity>
</properties>
<dependencyManagement>
<dependencies>
<!-- 公共依赖 -->
<dependency>
<groupId>com.sun</groupId>
<artifactId>tools</artifactId>
<version>${jdk}</version>
<scope>system</scope>
<systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<version>${servlet-api}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3}</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>${log4j}</version>
</dependency>
<dependency>
<groupId>dom4j</groupId>
<artifactId>dom4j</artifactId>
<version>${dom4j}</version>
</dependency>
<dependency>
<groupId>com.mashape.unirest</groupId>
<artifactId>unirest-java</artifactId>
<version>${unirest-java}</version>
</dependency>
<!-- 非公共依赖 -->
<dependency>
<groupId>org.jsoup</groupId>
<artifactId>jsoup</artifactId>
<version>${jsoup}</version>
</dependency>
<dependency>
<groupId>org.beetl</groupId>
<artifactId>beetl-core</artifactId>
<version>${beetl-core}</version>
</dependency>
<dependency>
<groupId>org.apache.velocity</groupId>
<artifactId>velocity</artifactId>
<version>${velocity}</version>
</dependency>
<!-- 本地依赖 -->
<dependency>
<groupId>local</groupId>
<artifactId>ipu-basic</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/ipu-basic-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>ipu-common</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/ipu-common-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>ipu-server-web</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/ipu-server-web-1.0.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-data</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-data.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-cache</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-cache.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-database</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-database.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-apache</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-apache.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-common</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-common.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>wade-sqlite-jdbc</artifactId>
<version>1.0</version>
<scope>system</scope>
<systemPath>${jar-path}/wade-sqlite-jdbc.jar</systemPath>
</dependency>
<dependency>
<groupId>local</groupId>
<artifactId>java_memcached-release</artifactId>
<version>2.5.3</version>
<scope>system</scope>
<systemPath>${jar-path}/java_memcached-release_2.5.3.jar</systemPath>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven-resources-plugin}</version>
<configuration>
<encoding>${encoding}</encoding>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin}</version>
<configuration>
<encoding>${encoding}</encoding>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>
|