pom.xml 24 KB

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