add rest-client and rest-server
Showing
1 changed file
with
20 additions
and
1 deletions
@@ -44,7 +44,12 @@ | @@ -44,7 +44,12 @@ | ||
44 | </dependency> | 44 | </dependency> |
45 | <dependency> | 45 | <dependency> |
46 | <groupId>com.yoho.core</groupId> | 46 | <groupId>com.yoho.core</groupId> |
47 | - <artifactId>yoho-core-rest</artifactId> | 47 | + <artifactId>yoho-core-rest-client</artifactId> |
48 | + <version>${yoho.version}</version> | ||
49 | + </dependency> | ||
50 | + <dependency> | ||
51 | + <groupId>com.yoho.core</groupId> | ||
52 | + <artifactId>yoho-core-rest-server</artifactId> | ||
48 | <version>${yoho.version}</version> | 53 | <version>${yoho.version}</version> |
49 | </dependency> | 54 | </dependency> |
50 | <dependency> | 55 | <dependency> |
@@ -52,6 +57,11 @@ | @@ -52,6 +57,11 @@ | ||
52 | <artifactId>yoho-core-message</artifactId> | 57 | <artifactId>yoho-core-message</artifactId> |
53 | <version>${yoho.version}</version> | 58 | <version>${yoho.version}</version> |
54 | </dependency> | 59 | </dependency> |
60 | + <dependency> | ||
61 | + <groupId>com.yoho.core</groupId> | ||
62 | + <artifactId>yoho-core-cache</artifactId> | ||
63 | + <version>${yoho.version}</version> | ||
64 | + </dependency> | ||
55 | 65 | ||
56 | <!-- //////////////// start yoho model //////////////// --> | 66 | <!-- //////////////// start yoho model //////////////// --> |
57 | <dependency> | 67 | <dependency> |
@@ -206,12 +216,21 @@ | @@ -206,12 +216,21 @@ | ||
206 | <version>5.1.30</version> | 216 | <version>5.1.30</version> |
207 | </dependency> | 217 | </dependency> |
208 | <!-- 导入dbcp的jar包,用来在applicationContext.xml中配置数据库 --> | 218 | <!-- 导入dbcp的jar包,用来在applicationContext.xml中配置数据库 --> |
219 | + | ||
220 | + | ||
221 | + <!--********************************* apache commons ********************************* --> | ||
209 | <dependency> | 222 | <dependency> |
210 | <groupId>commons-dbcp</groupId> | 223 | <groupId>commons-dbcp</groupId> |
211 | <artifactId>commons-dbcp</artifactId> | 224 | <artifactId>commons-dbcp</artifactId> |
212 | <version>1.4</version> | 225 | <version>1.4</version> |
213 | </dependency> | 226 | </dependency> |
214 | <dependency> | 227 | <dependency> |
228 | + <groupId>commons-fileupload</groupId> | ||
229 | + <artifactId>commons-fileupload</artifactId> | ||
230 | + <version>1.3.1</version> | ||
231 | + </dependency> | ||
232 | + | ||
233 | + <dependency> | ||
215 | <groupId>org.apache.httpcomponents</groupId> | 234 | <groupId>org.apache.httpcomponents</groupId> |
216 | <artifactId>httpclient</artifactId> | 235 | <artifactId>httpclient</artifactId> |
217 | <version>4.5.1</version> | 236 | <version>4.5.1</version> |
-
Please register or login to post a comment