pom.xml 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>xchat</artifactId>
  6. <groupId>com.xchat</groupId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>xchat-service</artifactId>
  11. <dependencyManagement>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.glassfish.jersey</groupId>
  15. <artifactId>jersey-bom</artifactId>
  16. <type>pom</type>
  17. <scope>import</scope>
  18. <version>2.15</version>
  19. </dependency>
  20. </dependencies>
  21. </dependencyManagement>
  22. <dependencies>
  23. <dependency>
  24. <groupId>com.qiniu</groupId>
  25. <artifactId>qiniu-java-sdk</artifactId>
  26. <version>7.2.8</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.xchat</groupId>
  30. <artifactId>xchat-common</artifactId>
  31. <version>0.0.1-SNAPSHOT</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>com.xchat</groupId>
  35. <artifactId>xchat-oauth2-service</artifactId>
  36. <version>0.0.1-SNAPSHOT</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework</groupId>
  40. <artifactId>spring-context-support</artifactId>
  41. <version>4.1.0.RELEASE</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.github.pagehelper</groupId>
  45. <artifactId>pagehelper</artifactId>
  46. <version>5.1.2</version>
  47. </dependency>
  48. <!-- redis -->
  49. <!--<dependency> -->
  50. <!--<groupId>redis.clients</groupId> -->
  51. <!--<artifactId>jedis</artifactId> -->
  52. <!--<version>2.6.0</version> -->
  53. <!--</dependency> -->
  54. <!--<dependency>-->
  55. <!--<groupId>org.aspectj</groupId>-->
  56. <!--<artifactId>aspectjrt</artifactId>-->
  57. <!--<version>${aspectj.version}</version>-->
  58. <!--<scope>compile</scope>-->
  59. <!--</dependency>-->
  60. <!--<dependency>-->
  61. <!--<groupId>org.aspectj</groupId>-->
  62. <!--<artifactId>aspectjweaver</artifactId>-->
  63. <!--<version>${aspectj.version}</version>-->
  64. <!--<scope>compile</scope>-->
  65. <!--</dependency>-->
  66. <!-- PERSISTENCE begin -->
  67. <dependency>
  68. <groupId>org.mybatis</groupId>
  69. <artifactId>mybatis</artifactId>
  70. <version>3.2.7</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.mybatis</groupId>
  74. <artifactId>mybatis-spring</artifactId>
  75. <version>1.2.2</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.springframework</groupId>
  79. <artifactId>spring-tx</artifactId>
  80. <version>4.1.0.RELEASE</version>
  81. </dependency>
  82. <!-- spring data access -->
  83. <dependency>
  84. <groupId>org.springframework</groupId>
  85. <artifactId>spring-orm</artifactId>
  86. <version>4.1.0.RELEASE</version>
  87. </dependency>
  88. <!-- connection pool -->
  89. <dependency>
  90. <groupId>commons-dbcp</groupId>
  91. <artifactId>commons-dbcp</artifactId>
  92. <version>1.4</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-pool</groupId>
  96. <artifactId>commons-pool</artifactId>
  97. <version>1.6</version>
  98. </dependency>
  99. <!-- jdbc driver -->
  100. <dependency>
  101. <groupId>mysql</groupId>
  102. <artifactId>mysql-connector-java</artifactId>
  103. <version>5.1.26</version>
  104. <scope>runtime</scope>
  105. </dependency>
  106. <!-- PERSISTENCE end -->
  107. <!-- WEB begin -->
  108. <dependency>
  109. <groupId>org.springframework</groupId>
  110. <artifactId>spring-webmvc</artifactId>
  111. <version>4.1.0.RELEASE</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>opensymphony</groupId>
  115. <artifactId>sitemesh</artifactId>
  116. <version>2.4.2</version>
  117. <scope>runtime</scope>
  118. </dependency>
  119. <dependency>
  120. <groupId>javax.servlet</groupId>
  121. <artifactId>javax.servlet-api</artifactId>
  122. <version>3.0.1</version>
  123. <scope>provided</scope>
  124. </dependency>
  125. <dependency>
  126. <groupId>javax.servlet</groupId>
  127. <artifactId>jstl</artifactId>
  128. <version>1.2</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.glassfish.web</groupId>
  132. <artifactId>jstl-impl</artifactId>
  133. <version>1.2</version>
  134. <exclusions>
  135. <exclusion>
  136. <artifactId>servlet-api</artifactId>
  137. <groupId>javax.servlet</groupId>
  138. </exclusion>
  139. <exclusion>
  140. <artifactId>jsp-api</artifactId>
  141. <groupId>javax.servlet.jsp</groupId>
  142. </exclusion>
  143. <exclusion>
  144. <artifactId>jstl-api</artifactId>
  145. <groupId>javax.servlet.jsp.jstl</groupId>
  146. </exclusion>
  147. </exclusions>
  148. </dependency>
  149. <!-- WEB end -->
  150. <!-- JSON begin -->
  151. <dependency>
  152. <groupId>com.fasterxml.jackson.module</groupId>
  153. <artifactId>jackson-module-jaxb-annotations</artifactId>
  154. <version>2.3.3</version>
  155. </dependency>
  156. <!-- https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-core -->
  157. <dependency>
  158. <groupId>com.fasterxml.jackson.core</groupId>
  159. <artifactId>jackson-core</artifactId>
  160. <version>2.8.7</version>
  161. </dependency>
  162. <!-- JSON end -->
  163. <!-- gson -->
  164. <dependency>
  165. <groupId>com.google.code.gson</groupId>
  166. <artifactId>gson</artifactId>
  167. <version>2.8.2</version>
  168. </dependency>
  169. <!-- gson end -->
  170. <!--spring security -->
  171. <dependency>
  172. <groupId>org.springframework.security</groupId>
  173. <artifactId>spring-security-core</artifactId>
  174. <version>${spring.security.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework.security</groupId>
  178. <artifactId>spring-security-web</artifactId>
  179. <version>${spring.security.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework.security</groupId>
  183. <artifactId>spring-security-taglibs</artifactId>
  184. <version>${spring.security.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework.security</groupId>
  188. <artifactId>spring-security-acl</artifactId>
  189. <version>${spring.security.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springframework.security</groupId>
  193. <artifactId>spring-security-crypto</artifactId>
  194. <version>${spring.security.version}</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.security</groupId>
  198. <artifactId>spring-security-config</artifactId>
  199. <version>${spring.security.version}</version>
  200. </dependency>
  201. <dependency>
  202. <groupId>org.codehaus.jackson</groupId>
  203. <artifactId>jackson-mapper-asl</artifactId>
  204. <version>1.9.13</version>
  205. </dependency>
  206. <dependency>
  207. <groupId>org.springframework.security</groupId>
  208. <artifactId>spring-security-jwt</artifactId>
  209. <version>1.0.3.RELEASE</version>
  210. <!--<optional>true</optional> -->
  211. </dependency>
  212. <dependency>
  213. <groupId>junit</groupId>
  214. <artifactId>junit</artifactId>
  215. <version>4.11</version>
  216. <scope>compile</scope>
  217. <optional>true</optional>
  218. </dependency>
  219. <!--<dependency> -->
  220. <!--<groupId>com.yy.ent.mobile</groupId> -->
  221. <!--<artifactId>thrift-pool</artifactId> -->
  222. <!--<version>0.0.1-SNAPSHOT</version> -->
  223. <!--</dependency> -->
  224. <!-- https://mvnrepository.com/artifact/org.apache.thrift/libthrift -->
  225. <!--<dependency> -->
  226. <!--<groupId>org.apache.thrift</groupId> -->
  227. <!--<artifactId>libthrift</artifactId> -->
  228. <!--<version>0.6.1</version> -->
  229. <!--<exclusions> -->
  230. <!--<exclusion> -->
  231. <!--<groupId>org.slf4j</groupId> -->
  232. <!--<artifactId>slf4j-api</artifactId> -->
  233. <!--</exclusion> -->
  234. <!--</exclusions> -->
  235. <!--</dependency> -->
  236. <dependency>
  237. <groupId>org.springframework</groupId>
  238. <artifactId>spring-test</artifactId>
  239. <version>4.1.0.RELEASE</version>
  240. </dependency>
  241. <dependency>
  242. <groupId>org.quartz-scheduler</groupId>
  243. <artifactId>quartz</artifactId>
  244. <version>2.2.1</version>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.quartz-scheduler</groupId>
  248. <artifactId>quartz-jobs</artifactId>
  249. <version>2.2.1</version>
  250. </dependency>
  251. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  252. <dependency>
  253. <groupId>commons-collections</groupId>
  254. <artifactId>commons-collections</artifactId>
  255. <version>3.2.1</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>commons-io</groupId>
  259. <artifactId>commons-io</artifactId>
  260. <version>2.4</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>net.sf.dozer</groupId>
  264. <artifactId>dozer</artifactId>
  265. <version>5.5.1</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>com.fasterxml.jackson.core</groupId>
  269. <artifactId>jackson-databind</artifactId>
  270. <version>2.8.5</version>
  271. </dependency>
  272. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  273. <!--<dependency> -->
  274. <!--<groupId>org.apache.httpcomponents</groupId> -->
  275. <!--<artifactId>httpclient</artifactId> -->
  276. <!--<version>4.3.4</version> -->
  277. <!--</dependency> -->
  278. <dependency>
  279. <groupId>org.apache.commons</groupId>
  280. <artifactId>commons-pool2</artifactId>
  281. <version>2.0</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>net.sourceforge.jchardet</groupId>
  285. <artifactId>jchardet</artifactId>
  286. <version>1.0</version>
  287. </dependency>
  288. <!-- redis -->
  289. <dependency>
  290. <groupId>redis.clients</groupId>
  291. <artifactId>jedis</artifactId>
  292. <version>2.9.0</version>
  293. </dependency>
  294. <!-- https://mvnrepository.com/artifact/org.apache.cxf/cxf-api -->
  295. <dependency>
  296. <groupId>org.apache.cxf</groupId>
  297. <artifactId>cxf-api</artifactId>
  298. <version>2.7.18</version>
  299. </dependency>
  300. <!-- https://mvnrepository.com/artifact/org.bouncycastle/bcprov-jdk16 -->
  301. <!--<dependency>-->
  302. <!--<groupId>org.bouncycastle</groupId>-->
  303. <!--<artifactId>bcprov-jdk16</artifactId>-->
  304. <!--<version>1.46</version>-->
  305. <!--</dependency>-->
  306. <dependency>
  307. <groupId>com.google.zxing</groupId>
  308. <artifactId>core</artifactId>
  309. <version>3.2.1</version>
  310. </dependency>
  311. <dependency>
  312. <groupId>com.google.zxing</groupId>
  313. <artifactId>javase</artifactId>
  314. <version>3.2.1</version>
  315. </dependency>
  316. <!-- https://mvnrepository.com/artifact/com.google.guava/guava -->
  317. <dependency>
  318. <groupId>com.google.guava</groupId>
  319. <artifactId>guava</artifactId>
  320. <version>18.0</version>
  321. </dependency>
  322. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
  323. <dependency>
  324. <groupId>org.apache.commons</groupId>
  325. <artifactId>commons-lang3</artifactId>
  326. <version>3.3.2</version>
  327. </dependency>
  328. <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-math -->
  329. <dependency>
  330. <groupId>org.apache.commons</groupId>
  331. <artifactId>commons-math</artifactId>
  332. <version>2.0</version>
  333. </dependency>
  334. <!--<dependency> -->
  335. <!--<groupId>junit</groupId> -->
  336. <!--<artifactId>junit</artifactId> -->
  337. <!--<version>4.12</version> -->
  338. <!--</dependency> -->
  339. <dependency>
  340. <groupId>org.easymock</groupId>
  341. <artifactId>easymock</artifactId>
  342. <version>3.4</version>
  343. </dependency>
  344. <!--<dependency> -->
  345. <!--<groupId>org.slf4j</groupId> -->
  346. <!--<artifactId>slf4j-api</artifactId> -->
  347. <!--<version>1.7.5</version> -->
  348. <!--</dependency> -->
  349. <!--<dependency> -->
  350. <!--<groupId>org.slf4j</groupId> -->
  351. <!--<artifactId>slf4j-log4j12</artifactId> -->
  352. <!--<version>1.7.5</version> -->
  353. <!--</dependency> -->
  354. <!--<dependency> -->
  355. <!--<groupId>log4j</groupId> -->
  356. <!--<artifactId>log4j</artifactId> -->
  357. <!--<version>1.2.16</version> -->
  358. <!--</dependency> -->
  359. <dependency>
  360. <groupId>org.glassfish.jersey.core</groupId>
  361. <artifactId>jersey-client</artifactId>
  362. </dependency>
  363. <dependency>
  364. <groupId>org.glassfish.jersey.media</groupId>
  365. <artifactId>jersey-media-json-jackson</artifactId>
  366. </dependency>
  367. <dependency>
  368. <groupId>org.glassfish.jersey.media</groupId>
  369. <artifactId>jersey-media-multipart</artifactId>
  370. </dependency>
  371. <dependency>
  372. <groupId>org.apache.httpcomponents</groupId>
  373. <artifactId>httpclient</artifactId>
  374. <version>4.3.3</version>
  375. </dependency>
  376. <dependency>
  377. <groupId>org.apache.httpcomponents</groupId>
  378. <artifactId>httpmime</artifactId>
  379. <version>4.3.3</version>
  380. </dependency>
  381. <dependency>
  382. <groupId>org.springframework</groupId>
  383. <artifactId>spring-beans</artifactId>
  384. <version>4.1.0.RELEASE</version>
  385. </dependency>
  386. <dependency>
  387. <groupId>org.apache.activemq</groupId>
  388. <artifactId>activemq-broker</artifactId>
  389. <version>5.14.5</version>
  390. </dependency>
  391. <dependency>
  392. <groupId>org.springframework</groupId>
  393. <artifactId>spring-jms</artifactId>
  394. <version>4.1.3.RELEASE</version>
  395. </dependency>
  396. <dependency>
  397. <groupId>org.apache.activemq</groupId>
  398. <artifactId>activemq-spring</artifactId>
  399. <version>5.14.5</version>
  400. </dependency>
  401. <dependency>
  402. <groupId>org.apache.activemq</groupId>
  403. <artifactId>activemq-client</artifactId>
  404. <version>5.14.5</version>
  405. </dependency>
  406. <dependency>
  407. <groupId>dom4j</groupId>
  408. <artifactId>dom4j</artifactId>
  409. <version>1.6.1</version>
  410. </dependency>
  411. <dependency>
  412. <groupId>org.mybatis.generator</groupId>
  413. <artifactId>mybatis-generator-core</artifactId>
  414. <version>1.3.2</version>
  415. </dependency>
  416. <!--阿里云消息队列-->
  417. <dependency>
  418. <groupId>com.aliyun.openservices</groupId>
  419. <artifactId>ons-client</artifactId>
  420. <version>1.2.1</version>
  421. </dependency>
  422. <!--阿里云消息队列-->
  423. <dependency>
  424. <groupId>com.aliyun.openservices</groupId>
  425. <artifactId>ons-client</artifactId>
  426. <version>1.2.1</version>
  427. </dependency>
  428. <dependency>
  429. <groupId>ma.glasnost.orika</groupId>
  430. <artifactId>orika-core</artifactId>
  431. <version>1.5.0</version>
  432. </dependency>
  433. </dependencies>
  434. <build>
  435. <plugins>
  436. <plugin>
  437. <groupId>org.mybatis.generator</groupId>
  438. <artifactId>mybatis-generator-maven-plugin</artifactId>
  439. <version>1.3.2</version>
  440. <configuration>
  441. <verbose>true</verbose>
  442. <overwrite>true</overwrite>
  443. </configuration>
  444. </plugin>
  445. </plugins>
  446. </build>
  447. </project>