|
@ -0,0 +1,187 @@
|
|
1
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
2
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
3
|
<modelVersion>4.0.0</modelVersion>
|
|
4
|
|
|
5
|
<groupId>ipu</groupId>
|
|
6
|
<artifactId>ipu-server-lib</artifactId>
|
|
7
|
<version>1.0</version>
|
|
8
|
<packaging>pom</packaging>
|
|
9
|
<name>ipu-server-lib</name>
|
|
10
|
|
|
11
|
<!-- 定义公共变量 -->
|
|
12
|
<properties>
|
|
13
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
14
|
<jdk>1.6.0</jdk>
|
|
15
|
<encoding>UTF-8</encoding>
|
|
16
|
<junit>3.8.1</junit>
|
|
17
|
<servlet-api>2.5</servlet-api>
|
|
18
|
<log4j>1.2.8</log4j>
|
|
19
|
<unirest-java>1.3.8</unirest-java>
|
|
20
|
<dom4j>1.6.1</dom4j>
|
|
21
|
<commons-lang3>3.4</commons-lang3>
|
|
22
|
<maven-resources-plugin>2.6</maven-resources-plugin>
|
|
23
|
<maven-compiler-plugin>2.5.1</maven-compiler-plugin>
|
|
24
|
|
|
25
|
<jar-path>${project.basedir}/libs</jar-path>
|
|
26
|
<jsoup>1.7.2</jsoup>
|
|
27
|
<beetl-core>2.2.3</beetl-core>
|
|
28
|
<velocity>1.7</velocity>
|
|
29
|
</properties>
|
|
30
|
|
|
31
|
<dependencyManagement>
|
|
32
|
<dependencies>
|
|
33
|
<!-- 公共依赖 -->
|
|
34
|
<dependency>
|
|
35
|
<groupId>com.sun</groupId>
|
|
36
|
<artifactId>tools</artifactId>
|
|
37
|
<version>${jdk}</version>
|
|
38
|
<scope>system</scope>
|
|
39
|
<systemPath>${env.JAVA_HOME}/lib/tools.jar</systemPath>
|
|
40
|
</dependency>
|
|
41
|
<dependency>
|
|
42
|
<groupId>junit</groupId>
|
|
43
|
<artifactId>junit</artifactId>
|
|
44
|
<version>${junit}</version>
|
|
45
|
<scope>test</scope>
|
|
46
|
</dependency>
|
|
47
|
<dependency>
|
|
48
|
<groupId>javax.servlet</groupId>
|
|
49
|
<artifactId>servlet-api</artifactId>
|
|
50
|
<version>${servlet-api}</version>
|
|
51
|
<scope>provided</scope>
|
|
52
|
</dependency>
|
|
53
|
<dependency>
|
|
54
|
<groupId>org.apache.commons</groupId>
|
|
55
|
<artifactId>commons-lang3</artifactId>
|
|
56
|
<version>${commons-lang3}</version>
|
|
57
|
</dependency>
|
|
58
|
<dependency>
|
|
59
|
<groupId>log4j</groupId>
|
|
60
|
<artifactId>log4j</artifactId>
|
|
61
|
<version>${log4j}</version>
|
|
62
|
</dependency>
|
|
63
|
<dependency>
|
|
64
|
<groupId>dom4j</groupId>
|
|
65
|
<artifactId>dom4j</artifactId>
|
|
66
|
<version>${dom4j}</version>
|
|
67
|
</dependency>
|
|
68
|
<dependency>
|
|
69
|
<groupId>com.mashape.unirest</groupId>
|
|
70
|
<artifactId>unirest-java</artifactId>
|
|
71
|
<version>${unirest-java}</version>
|
|
72
|
</dependency>
|
|
73
|
|
|
74
|
<!-- 非公共依赖 -->
|
|
75
|
<dependency>
|
|
76
|
<groupId>org.jsoup</groupId>
|
|
77
|
<artifactId>jsoup</artifactId>
|
|
78
|
<version>${jsoup}</version>
|
|
79
|
</dependency>
|
|
80
|
<dependency>
|
|
81
|
<groupId>org.beetl</groupId>
|
|
82
|
<artifactId>beetl-core</artifactId>
|
|
83
|
<version>${beetl-core}</version>
|
|
84
|
</dependency>
|
|
85
|
<dependency>
|
|
86
|
<groupId>org.apache.velocity</groupId>
|
|
87
|
<artifactId>velocity</artifactId>
|
|
88
|
<version>${velocity}</version>
|
|
89
|
</dependency>
|
|
90
|
|
|
91
|
<!-- 本地依赖 -->
|
|
92
|
<dependency>
|
|
93
|
<groupId>local</groupId>
|
|
94
|
<artifactId>ipu-basic</artifactId>
|
|
95
|
<version>1.0</version>
|
|
96
|
<scope>system</scope>
|
|
97
|
<systemPath>${jar-path}/ipu-basic-1.0.jar</systemPath>
|
|
98
|
</dependency>
|
|
99
|
<dependency>
|
|
100
|
<groupId>local</groupId>
|
|
101
|
<artifactId>ipu-common</artifactId>
|
|
102
|
<version>1.0</version>
|
|
103
|
<scope>system</scope>
|
|
104
|
<systemPath>${jar-path}/ipu-common-1.0.jar</systemPath>
|
|
105
|
</dependency>
|
|
106
|
<dependency>
|
|
107
|
<groupId>local</groupId>
|
|
108
|
<artifactId>ipu-server-web</artifactId>
|
|
109
|
<version>1.0</version>
|
|
110
|
<scope>system</scope>
|
|
111
|
<systemPath>${jar-path}/ipu-server-web-1.0.jar</systemPath>
|
|
112
|
</dependency>
|
|
113
|
<dependency>
|
|
114
|
<groupId>local</groupId>
|
|
115
|
<artifactId>wade-data</artifactId>
|
|
116
|
<version>1.0</version>
|
|
117
|
<scope>system</scope>
|
|
118
|
<systemPath>${jar-path}/wade-data.jar</systemPath>
|
|
119
|
</dependency>
|
|
120
|
<dependency>
|
|
121
|
<groupId>local</groupId>
|
|
122
|
<artifactId>wade-cache</artifactId>
|
|
123
|
<version>1.0</version>
|
|
124
|
<scope>system</scope>
|
|
125
|
<systemPath>${jar-path}/wade-cache.jar</systemPath>
|
|
126
|
</dependency>
|
|
127
|
<dependency>
|
|
128
|
<groupId>local</groupId>
|
|
129
|
<artifactId>wade-database</artifactId>
|
|
130
|
<version>1.0</version>
|
|
131
|
<scope>system</scope>
|
|
132
|
<systemPath>${jar-path}/wade-database.jar</systemPath>
|
|
133
|
</dependency>
|
|
134
|
<dependency>
|
|
135
|
<groupId>local</groupId>
|
|
136
|
<artifactId>wade-apache</artifactId>
|
|
137
|
<version>1.0</version>
|
|
138
|
<scope>system</scope>
|
|
139
|
<systemPath>${jar-path}/wade-apache.jar</systemPath>
|
|
140
|
</dependency>
|
|
141
|
<dependency>
|
|
142
|
<groupId>local</groupId>
|
|
143
|
<artifactId>wade-common</artifactId>
|
|
144
|
<version>1.0</version>
|
|
145
|
<scope>system</scope>
|
|
146
|
<systemPath>${jar-path}/wade-common.jar</systemPath>
|
|
147
|
</dependency>
|
|
148
|
<dependency>
|
|
149
|
<groupId>local</groupId>
|
|
150
|
<artifactId>wade-sqlite-jdbc</artifactId>
|
|
151
|
<version>1.0</version>
|
|
152
|
<scope>system</scope>
|
|
153
|
<systemPath>${jar-path}/wade-sqlite-jdbc.jar</systemPath>
|
|
154
|
</dependency>
|
|
155
|
<dependency>
|
|
156
|
<groupId>local</groupId>
|
|
157
|
<artifactId>java_memcached-release</artifactId>
|
|
158
|
<version>2.5.3</version>
|
|
159
|
<scope>system</scope>
|
|
160
|
<systemPath>${jar-path}/java_memcached-release_2.5.3.jar</systemPath>
|
|
161
|
</dependency>
|
|
162
|
</dependencies>
|
|
163
|
</dependencyManagement>
|
|
164
|
|
|
165
|
<build>
|
|
166
|
<pluginManagement>
|
|
167
|
<plugins>
|
|
168
|
<plugin>
|
|
169
|
<groupId>org.apache.maven.plugins</groupId>
|
|
170
|
<artifactId>maven-resources-plugin</artifactId>
|
|
171
|
<version>${maven-resources-plugin}</version>
|
|
172
|
<configuration>
|
|
173
|
<encoding>${encoding}</encoding>
|
|
174
|
</configuration>
|
|
175
|
</plugin>
|
|
176
|
<plugin>
|
|
177
|
<groupId>org.apache.maven.plugins</groupId>
|
|
178
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
179
|
<version>${maven-compiler-plugin}</version>
|
|
180
|
<configuration>
|
|
181
|
<encoding>${encoding}</encoding>
|
|
182
|
</configuration>
|
|
183
|
</plugin>
|
|
184
|
</plugins>
|
|
185
|
</pluginManagement>
|
|
186
|
</build>
|
|
187
|
</project>
|