pom.xml 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.yihu.core</groupId>
  7. <artifactId>Hos-Framework-dependencies</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>pom</packaging>
  10. <build>
  11. <plugins>
  12. <plugin>
  13. <groupId>org.apache.maven.plugins</groupId>
  14. <artifactId>maven-compiler-plugin</artifactId>
  15. <configuration>
  16. <source>1.7</source>
  17. <target>1.7</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <properties>
  23. <aspectj.version>1.8.7</aspectj.version>
  24. <jackson.version>2.4.6</jackson.version>
  25. <spring.version>4.1.8.RELEASE</spring.version>
  26. <spring.security.version>4.0.2.RELEASE</spring.security.version>
  27. </properties>
  28. <pluginRepositories>
  29. <pluginRepository>
  30. <id>pluginCentral</id>
  31. <name>pluginCentral</name>
  32. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  33. </pluginRepository>
  34. <pluginRepository>
  35. <id>pluginReleases</id>
  36. <name>pluginReleases</name>
  37. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  38. </pluginRepository>
  39. </pluginRepositories>
  40. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  41. <distributionManagement>
  42. <repository>
  43. <id>Releases</id>
  44. <name>Releases</name>
  45. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  46. </repository>
  47. <snapshotRepository>
  48. <id>snapshots</id>
  49. <name>Snapshots</name>
  50. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  51. </snapshotRepository>
  52. </distributionManagement>
  53. <repositories>
  54. <repository>
  55. <id>repositoryCentral</id>
  56. <name>repositoryCentral</name>
  57. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  58. </repository>
  59. <repository>
  60. <id>repositoryReleases</id>
  61. <name>repositoryReleases</name>
  62. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  63. </repository>
  64. </repositories>
  65. <dependencies>
  66. <!--=============httpclient start=============-->
  67. <dependency>
  68. <groupId>org.apache.httpcomponents</groupId>
  69. <artifactId>httpclient</artifactId>
  70. <version>4.5.1</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.apache.httpcomponents</groupId>
  74. <artifactId>httpmime</artifactId>
  75. <version>4.5.1</version>
  76. </dependency>
  77. <dependency>
  78. <groupId>org.apache.httpcomponents</groupId>
  79. <artifactId>httpcore</artifactId>
  80. <version>4.4.3</version>
  81. </dependency>
  82. <!--=============httpclient end=============-->
  83. <!--=============hibernate start============-->
  84. <dependency>
  85. <groupId>org.hibernate</groupId>
  86. <artifactId>hibernate-core</artifactId>
  87. <version>4.3.11.Final</version>
  88. </dependency>
  89. <!--=============hibernate end============-->
  90. <!--=============spring start =============-->
  91. <dependency>
  92. <groupId>org.springframework</groupId>
  93. <artifactId>spring-aop</artifactId>
  94. <version>${spring.version}</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework</groupId>
  98. <artifactId>spring-aspects</artifactId>
  99. <version>${spring.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>org.springframework</groupId>
  103. <artifactId>spring-beans</artifactId>
  104. <version>${spring.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>org.springframework</groupId>
  108. <artifactId>spring-context</artifactId>
  109. <version>${spring.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.springframework</groupId>
  113. <artifactId>spring-context-support</artifactId>
  114. <version>${spring.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.springframework</groupId>
  118. <artifactId>spring-core</artifactId>
  119. <version>${spring.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.springframework</groupId>
  123. <artifactId>spring-expression</artifactId>
  124. <version>${spring.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-jdbc</artifactId>
  129. <version>${spring.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-orm</artifactId>
  134. <version>${spring.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-tx</artifactId>
  139. <version>${spring.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring-web</artifactId>
  144. <version>${spring.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-webmvc</artifactId>
  149. <version>${spring.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-webmvc-portlet</artifactId>
  154. <version>${spring.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-websocket</artifactId>
  159. <version>${spring.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework</groupId>
  163. <artifactId>spring-test</artifactId>
  164. <version>${spring.version}</version>
  165. <scope>test</scope>
  166. </dependency>
  167. <dependency>
  168. <groupId>org.springframework.security</groupId>
  169. <artifactId>spring-security-acl</artifactId>
  170. <version>${spring.security.version}</version>
  171. </dependency>
  172. <dependency>
  173. <groupId>org.springframework.security</groupId>
  174. <artifactId>spring-security-aspects</artifactId>
  175. <version>${spring.security.version}</version>
  176. </dependency>
  177. <dependency>
  178. <groupId>org.springframework.security</groupId>
  179. <artifactId>spring-security-cas</artifactId>
  180. <version>${spring.security.version}</version>
  181. <exclusions>
  182. <exclusion>
  183. <groupId>org.slf4j</groupId>
  184. <artifactId>log4j-over-slf4j</artifactId>
  185. </exclusion>
  186. </exclusions>
  187. </dependency>
  188. <dependency>
  189. <groupId>org.springframework.security</groupId>
  190. <artifactId>spring-security-config</artifactId>
  191. <version>${spring.security.version}</version>
  192. </dependency>
  193. <dependency>
  194. <groupId>org.springframework.security</groupId>
  195. <artifactId>spring-security-core</artifactId>
  196. <version>${spring.security.version}</version>
  197. </dependency>
  198. <dependency>
  199. <groupId>org.springframework.security</groupId>
  200. <artifactId>spring-security-crypto</artifactId>
  201. <version>${spring.security.version}</version>
  202. </dependency>
  203. <dependency>
  204. <groupId>org.springframework.security</groupId>
  205. <artifactId>spring-security-ldap</artifactId>
  206. <version>${spring.security.version}</version>
  207. </dependency>
  208. <dependency>
  209. <groupId>org.springframework.security</groupId>
  210. <artifactId>spring-security-openid</artifactId>
  211. <version>${spring.security.version}</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>org.springframework.security</groupId>
  215. <artifactId>spring-security-remoting</artifactId>
  216. <version>${spring.security.version}</version>
  217. </dependency>
  218. <dependency>
  219. <groupId>org.springframework.security</groupId>
  220. <artifactId>spring-security-taglibs</artifactId>
  221. <version>${spring.security.version}</version>
  222. </dependency>
  223. <dependency>
  224. <groupId>org.springframework.security</groupId>
  225. <artifactId>spring-security-web</artifactId>
  226. <version>${spring.security.version}</version>
  227. </dependency>
  228. <dependency>
  229. <groupId>io.springfox</groupId>
  230. <artifactId>springfox-swagger2</artifactId>
  231. <version>2.1.2</version>
  232. </dependency>
  233. <dependency>
  234. <groupId>io.springfox</groupId>
  235. <artifactId>springfox-swagger-ui</artifactId>
  236. <version>2.1.2</version>
  237. </dependency>
  238. <!--=============spring end =============-->
  239. <!--=============jackson start =============-->
  240. <dependency>
  241. <groupId>com.fasterxml.jackson.core</groupId>
  242. <artifactId>jackson-core</artifactId>
  243. <version>${jackson.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.fasterxml.jackson.core</groupId>
  247. <artifactId>jackson-annotations</artifactId>
  248. <version>${jackson.version}</version>
  249. </dependency>
  250. <dependency>
  251. <groupId>com.fasterxml.jackson.core</groupId>
  252. <artifactId>jackson-databind</artifactId>
  253. <version>${jackson.version}</version>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.codehaus.jackson</groupId>
  257. <artifactId>jackson-core-asl</artifactId>
  258. <version>1.9.13</version>
  259. </dependency>
  260. <dependency>
  261. <groupId>org.codehaus.jackson</groupId>
  262. <artifactId>jackson-jaxrs</artifactId>
  263. <version>1.9.13</version>
  264. </dependency>
  265. <dependency>
  266. <groupId>org.codehaus.jackson</groupId>
  267. <artifactId>jackson-mapper-asl</artifactId>
  268. <version>1.9.13</version>
  269. </dependency>
  270. <dependency>
  271. <groupId>org.codehaus.jackson</groupId>
  272. <artifactId>jackson-xc</artifactId>
  273. <version>1.9.13</version>
  274. </dependency>
  275. <dependency>
  276. <groupId>org.codehaus.jettison</groupId>
  277. <artifactId>jettison</artifactId>
  278. <version>1.1</version>
  279. </dependency>
  280. <dependency>
  281. <groupId>org.codehaus.woodstox</groupId>
  282. <artifactId>stax2-api</artifactId>
  283. <version>3.1.4</version>
  284. </dependency>
  285. <!--=============jackson end =============-->
  286. <!--=============axis start =============-->
  287. <dependency>
  288. <groupId>org.apache.axis</groupId>
  289. <artifactId>axis</artifactId>
  290. <version>1.4</version>
  291. </dependency>
  292. <dependency>
  293. <groupId>org.apache.axis2</groupId>
  294. <artifactId>axis2</artifactId>
  295. <version>1.6.3</version>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.apache.axis2</groupId>
  299. <artifactId>axis2-adb</artifactId>
  300. <version>1.6.3</version>
  301. </dependency>
  302. <dependency>
  303. <groupId>org.apache.axis2</groupId>
  304. <artifactId>axis2-kernel</artifactId>
  305. <version>1.6.3</version>
  306. <exclusions>
  307. <exclusion>
  308. <groupId>org.apache.ws.commons.schema</groupId>
  309. <artifactId>XmlSchema</artifactId>
  310. </exclusion>
  311. </exclusions>
  312. </dependency>
  313. <dependency>
  314. <groupId>org.apache.axis2</groupId>
  315. <artifactId>org.apache.axis2.osgi</artifactId>
  316. <version>1.6.3</version>
  317. </dependency>
  318. <!--=============axis end =============-->
  319. <!--=============log4j start =============-->
  320. <dependency>
  321. <groupId>org.slf4j</groupId>
  322. <artifactId>slf4j-nop</artifactId>
  323. <version>1.7.13</version>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.slf4j</groupId>
  327. <artifactId>slf4j-api</artifactId>
  328. <version>1.7.12</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.apache.logging.log4j</groupId>
  332. <artifactId>log4j-core</artifactId>
  333. <version>2.4.1</version>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.apache.logging.log4j</groupId>
  337. <artifactId>log4j-api</artifactId>
  338. <version>2.4.1</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>log4j</groupId>
  342. <artifactId>log4j</artifactId>
  343. <version>1.2.17</version>
  344. </dependency>
  345. <!--=============log4j end =============-->
  346. <!--=============google工具 start =============-->
  347. <dependency>
  348. <groupId>com.google.protobuf</groupId>
  349. <artifactId>protobuf-java</artifactId>
  350. <version>2.5.0</version>
  351. </dependency>
  352. <dependency>
  353. <groupId>com.google.guava</groupId>
  354. <artifactId>guava</artifactId>
  355. <version>16.0</version>
  356. </dependency>
  357. <!--=============google工具 end =============-->
  358. <!--=============mysql驱动 start =============-->
  359. <dependency>
  360. <groupId>mysql</groupId>
  361. <artifactId>mysql-connector-java</artifactId>
  362. <version>5.1.37</version>
  363. </dependency>
  364. <!--=============mysql驱动 end =============-->
  365. <!--=============oracle驱动 start =============
  366. <dependency>
  367. <groupId>com.oracle</groupId>
  368. <artifactId>ojdbc6</artifactId>
  369. <version>11.2.0.3.0</version>
  370. </dependency>-->
  371. <!--=============oracle驱动 end =============-->
  372. <!--=============quartz start =============-->
  373. <dependency>
  374. <groupId>org.quartz-scheduler</groupId>
  375. <artifactId>quartz</artifactId>
  376. <version>2.0.1</version>
  377. <!--<exclusions>
  378. <exclusion>
  379. <groupId>org.slf4j</groupId>
  380. <artifactId>slf4j-api</artifactId>
  381. </exclusion>
  382. </exclusions>-->
  383. </dependency>
  384. <!--=============quartz end =============-->
  385. <!--=============junit单元测试 start =============-->
  386. <dependency>
  387. <groupId>junit</groupId>
  388. <artifactId>junit</artifactId>
  389. <version>4.11</version>
  390. <scope>test</scope>
  391. </dependency>
  392. <!--=============junit end =============-->
  393. <!--=============aspectj start =============-->
  394. <dependency>
  395. <groupId>org.aspectj</groupId>
  396. <artifactId>aspectjrt</artifactId>
  397. <version>${aspectj.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.aspectj</groupId>
  401. <artifactId>aspectjweaver</artifactId>
  402. <version>${aspectj.version}</version>
  403. </dependency>
  404. <!--=============aspectj end =============-->
  405. <!--=============tilesJSP布局框架 start =============-->
  406. <dependency>
  407. <groupId>org.apache.tiles</groupId>
  408. <artifactId>tiles-extras</artifactId>
  409. <version>3.0.5</version>
  410. </dependency>
  411. <!--=============tiles end =============-->
  412. <!--=============sfjson start =============-->
  413. <dependency>
  414. <groupId>net.sf.json-lib</groupId>
  415. <artifactId>json-lib</artifactId>
  416. <version>2.4</version>
  417. </dependency>
  418. <!--=============sfjson end =============-->
  419. <!--=============commons start =============-->
  420. <dependency>
  421. <groupId>commons-discovery</groupId>
  422. <artifactId>commons-discovery</artifactId>
  423. <version>0.2</version>
  424. </dependency>
  425. <dependency>
  426. <groupId>commons-beanutils</groupId>
  427. <artifactId>commons-beanutils</artifactId>
  428. <version>1.9.2</version>
  429. </dependency>
  430. <dependency>
  431. <groupId>org.apache.commons</groupId>
  432. <artifactId>commons-collections4</artifactId>
  433. <version>4.0</version>
  434. </dependency>
  435. <dependency>
  436. <groupId>commons-io</groupId>
  437. <artifactId>commons-io</artifactId>
  438. <version>2.4</version>
  439. </dependency>
  440. <dependency>
  441. <groupId>org.apache.commons</groupId>
  442. <artifactId>commons-dbcp2</artifactId>
  443. <version>2.1</version>
  444. </dependency>
  445. <dependency>
  446. <groupId>commons-codec</groupId>
  447. <artifactId>commons-codec</artifactId>
  448. <version>1.10</version>
  449. </dependency>
  450. <dependency>
  451. <groupId>commons-configuration</groupId>
  452. <artifactId>commons-configuration</artifactId>
  453. <version>1.10</version>
  454. </dependency>
  455. <dependency>
  456. <groupId>commons-dbutils</groupId>
  457. <artifactId>commons-dbutils</artifactId>
  458. <version>1.6</version>
  459. </dependency>
  460. <dependency>
  461. <groupId>commons-fileupload</groupId>
  462. <artifactId>commons-fileupload</artifactId>
  463. <version>1.3.1</version>
  464. </dependency>
  465. <dependency>
  466. <groupId>org.apache.commons</groupId>
  467. <artifactId>commons-lang3</artifactId>
  468. <version>3.3.2</version>
  469. </dependency>
  470. <dependency>
  471. <groupId>commons-lang</groupId>
  472. <artifactId>commons-lang</artifactId>
  473. <version>2.6</version>
  474. </dependency>
  475. <dependency>
  476. <groupId>commons-logging</groupId>
  477. <artifactId>commons-logging</artifactId>
  478. <version>1.2</version>
  479. </dependency>
  480. <dependency>
  481. <groupId>org.apache.commons</groupId>
  482. <artifactId>commons-pool2</artifactId>
  483. <version>2.4.2</version>
  484. </dependency>
  485. <!--=============commons end =============-->
  486. <!--=============fastdfs start =============-->
  487. <dependency>
  488. <groupId>org.csource</groupId>
  489. <artifactId>fastdfs-client-java</artifactId>
  490. <version>1.0</version>
  491. </dependency>
  492. <!--=============fastdfs end =============-->
  493. <!--=============javamail start =============-->
  494. <dependency>
  495. <groupId>javax.mail</groupId>
  496. <artifactId>javax.mail-api</artifactId>
  497. <version>1.5.4</version>
  498. </dependency>
  499. <!--=============javamail end =============-->
  500. <!--=============cglib start =============-->
  501. <dependency>
  502. <!--字节码的动态生成工具-->
  503. <groupId>cglib</groupId>
  504. <artifactId>cglib</artifactId>
  505. <version>3.1</version>
  506. </dependency>
  507. <!--=============cglib end =============-->
  508. <!--=============ASM字节码库 start =============-->
  509. <!--spring依赖包-->
  510. <dependency>
  511. <groupId>asm</groupId>
  512. <artifactId>asm</artifactId>
  513. <version>3.1</version>
  514. </dependency>
  515. <!--=============ASM字节码库 end =============-->
  516. <!--=============aopalliance end =============-->
  517. <!--spring依赖包-->
  518. <dependency>
  519. <groupId>aopalliance</groupId>
  520. <artifactId>aopalliance</artifactId>
  521. <version>1.0</version>
  522. </dependency>
  523. <!--=============aopalliance end =============-->
  524. <dependency>
  525. <groupId>org.json</groupId>
  526. <artifactId>json</artifactId>
  527. <version>20151123</version>
  528. </dependency>
  529. <dependency>
  530. <groupId>javax.servlet</groupId>
  531. <artifactId>javax.servlet-api</artifactId>
  532. <version>3.1.0</version>
  533. </dependency>
  534. <dependency>
  535. <groupId>dom4j</groupId>
  536. <artifactId>dom4j</artifactId>
  537. <version>1.6.1</version>
  538. </dependency>
  539. <dependency>
  540. <groupId>xml-apis</groupId>
  541. <artifactId>xml-apis</artifactId>
  542. <version>1.4.01</version>
  543. </dependency>
  544. <dependency>
  545. <groupId>javax.xml</groupId>
  546. <artifactId>jaxrpc-api</artifactId>
  547. <version>1.1</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>org.antlr</groupId>
  551. <artifactId>antlr4</artifactId>
  552. <version>4.5</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>net.sf.ezmorph</groupId>
  556. <artifactId>ezmorph</artifactId>
  557. <version>1.0.6</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>org.hamcrest</groupId>
  561. <artifactId>hamcrest-core</artifactId>
  562. <version>1.3</version>
  563. </dependency>
  564. <dependency>
  565. <groupId>org.jboss</groupId>
  566. <artifactId>jandex</artifactId>
  567. <version>1.1.0.Final</version>
  568. </dependency>
  569. <dependency>
  570. <groupId>org.javassist</groupId>
  571. <artifactId>javassist</artifactId>
  572. <version>3.18.1-GA</version>
  573. </dependency>
  574. <dependency>
  575. <groupId>javax.persistence</groupId>
  576. <artifactId>persistence-api</artifactId>
  577. <version>1.0.2</version>
  578. </dependency>
  579. <dependency>
  580. <groupId>jaxen</groupId>
  581. <artifactId>jaxen</artifactId>
  582. <version>1.1.6</version>
  583. </dependency>
  584. <dependency>
  585. <groupId>jstl</groupId>
  586. <artifactId>jstl</artifactId>
  587. <version>1.2</version>
  588. </dependency>
  589. <dependency>
  590. <groupId>com.belerweb</groupId>
  591. <artifactId>pinyin4j</artifactId>
  592. <version>2.5.0</version>
  593. </dependency>
  594. <dependency>
  595. <groupId>taglibs</groupId>
  596. <artifactId>standard</artifactId>
  597. <version>1.1.2</version>
  598. </dependency>
  599. <dependency>
  600. <groupId>net.lingala.zip4j</groupId>
  601. <artifactId>zip4j</artifactId>
  602. <version>1.3.2</version>
  603. </dependency>
  604. <dependency>
  605. <groupId>org.apache.htrace</groupId>
  606. <artifactId>htrace-core</artifactId>
  607. <version>3.1.0-incubating</version>
  608. </dependency>
  609. <dependency>
  610. <groupId>io.netty</groupId>
  611. <artifactId>netty-all</artifactId>
  612. <version>4.0.32.Final</version>
  613. </dependency>
  614. <dependency>
  615. <groupId>org.noggit</groupId>
  616. <artifactId>noggit</artifactId>
  617. <version>0.6</version>
  618. </dependency>
  619. <dependency>
  620. <groupId>com.yihu.core</groupId>
  621. <artifactId>ehr-redishelper</artifactId>
  622. <version>1.0.0</version>
  623. </dependency>
  624. <dependency>
  625. <groupId>redis.clients</groupId>
  626. <artifactId>jedis</artifactId>
  627. <version>2.8.0</version>
  628. </dependency>
  629. <dependency>
  630. <groupId>org.springframework.data</groupId>
  631. <artifactId>spring-data-redis</artifactId>
  632. <version>1.6.2.RELEASE</version>
  633. </dependency>
  634. <dependency>
  635. <groupId>com.yihu.core</groupId>
  636. <artifactId>core-rpc</artifactId>
  637. <version>2.2.0</version>
  638. </dependency>
  639. <dependency>
  640. <groupId>com.yihu.core</groupId>
  641. <artifactId>ehr-dbhelper</artifactId>
  642. <version>1.1.7</version>
  643. </dependency>
  644. <dependency>
  645. <groupId>commons-net</groupId>
  646. <artifactId>commons-net</artifactId>
  647. <version>3.3</version>
  648. </dependency>
  649. <!-- =============WEBSERVICE调用====================-->
  650. <dependency>
  651. <groupId>org.apache.cxf</groupId>
  652. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  653. <version>3.0.0</version>
  654. </dependency>
  655. <dependency>
  656. <groupId>org.apache.cxf</groupId>
  657. <artifactId>cxf-rt-transports-http</artifactId>
  658. <version>3.0.0</version>
  659. </dependency>
  660. <dependency>
  661. <groupId>org.apache.cxf</groupId>
  662. <artifactId>cxf-rt-bindings-soap</artifactId>
  663. <version>3.0.0</version>
  664. </dependency>
  665. </dependencies>
  666. </project>