pom.xml 14 KB

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