pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  7. <groupId>com.yihu.ehr</groupId>
  8. <artifactId>ehr-cloud-parent</artifactId>
  9. <version>1.13.0</version>
  10. <relativePath>../ehr-cloud-parent/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>hos-web-framework</artifactId>
  13. <version>1.3.0</version>
  14. <description>原eip公共包</description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>com.yihu.ehr</groupId>
  18. <artifactId>commons-data-fastdfs</artifactId>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework.boot</groupId>
  22. <artifactId>spring-boot-starter-web</artifactId>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-data-jpa</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-logging</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.mongodb</groupId>
  38. <artifactId>mongo-java-driver</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>mysql</groupId>
  42. <artifactId>mysql-connector-java</artifactId>
  43. </dependency>
  44. <!-- swagger start -->
  45. <dependency>
  46. <groupId>io.springfox</groupId>
  47. <artifactId>springfox-swagger2</artifactId>
  48. <exclusions>
  49. <exclusion>
  50. <artifactId>classmate</artifactId>
  51. <groupId>com.fasterxml</groupId>
  52. </exclusion>
  53. </exclusions>
  54. </dependency>
  55. <dependency>
  56. <groupId>io.springfox</groupId>
  57. <artifactId>springfox-swagger-ui</artifactId>
  58. </dependency>
  59. <!-- swagger end -->
  60. <!-- test start -->
  61. <dependency>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-starter-test</artifactId>
  64. <scope>test</scope>
  65. </dependency>
  66. <!-- test end -->
  67. <dependency>
  68. <groupId>eu.medsea.mimeutil</groupId>
  69. <artifactId>mime-util</artifactId>
  70. <exclusions>
  71. <exclusion>
  72. <groupId>org.slf4j</groupId>
  73. <artifactId>slf4j-log4j12</artifactId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <!-- old ho-core start-->
  78. <!--zip start-->
  79. <dependency>
  80. <groupId>net.lingala.zip4j</groupId>
  81. <artifactId>zip4j</artifactId>
  82. </dependency>
  83. <!--zip end-->
  84. <!--commons start-->
  85. <dependency>
  86. <groupId>org.apache.commons</groupId>
  87. <artifactId>commons-collections4</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-fileupload</groupId>
  91. <artifactId>commons-fileupload</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.commons</groupId>
  95. <artifactId>commons-lang3</artifactId>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-net</groupId>
  99. <artifactId>commons-net</artifactId>
  100. </dependency>
  101. <dependency>
  102. <groupId>commons-beanutils</groupId>
  103. <artifactId>commons-beanutils</artifactId>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-codec</groupId>
  107. <artifactId>commons-codec</artifactId>
  108. </dependency>
  109. <!--commons end-->
  110. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  111. <dependency>
  112. <groupId>com.squareup.okhttp3</groupId>
  113. <artifactId>okhttp</artifactId>
  114. </dependency>
  115. <!--pinyin4j start-->
  116. <dependency>
  117. <groupId>com.belerweb</groupId>
  118. <artifactId>pinyin4j</artifactId>
  119. </dependency>
  120. <!--pinyin4j end-->
  121. <!--jackson start-->
  122. <dependency>
  123. <groupId>com.fasterxml.jackson.core</groupId>
  124. <artifactId>jackson-core</artifactId>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.fasterxml.jackson.core</groupId>
  128. <artifactId>jackson-databind</artifactId>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.fasterxml.jackson.dataformat</groupId>
  132. <artifactId>jackson-dataformat-xml</artifactId>
  133. </dependency>
  134. <!--jackson end-->
  135. <!--=============httpclient start=============-->
  136. <dependency>
  137. <groupId>org.apache.httpcomponents</groupId>
  138. <artifactId>httpclient</artifactId>
  139. <!--<version>4.5.1</version>-->
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.httpcomponents</groupId>
  143. <artifactId>httpmime</artifactId>
  144. <!--<version>4.5.1</version>-->
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.httpcomponents</groupId>
  148. <artifactId>httpcore</artifactId>
  149. <!--<version>4.4.3</version>-->
  150. </dependency>
  151. <!--=============httpclient end=============-->
  152. <!-- Log framework start-->
  153. <dependency>
  154. <groupId>org.slf4j</groupId>
  155. <artifactId>slf4j-api</artifactId>
  156. </dependency>
  157. <dependency>
  158. <groupId>junit</groupId>
  159. <artifactId>junit</artifactId>
  160. <scope>test</scope>
  161. </dependency>
  162. <dependency>
  163. <groupId>org.apache.logging.log4j</groupId>
  164. <artifactId>log4j-api</artifactId>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.apache.logging.log4j</groupId>
  168. <artifactId>log4j-core</artifactId>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.jcraft</groupId>
  172. <artifactId>jsch</artifactId>
  173. </dependency>
  174. <dependency>
  175. <groupId>org.apache.pdfbox</groupId>
  176. <artifactId>pdfbox</artifactId>
  177. <version>2.0.10</version>
  178. </dependency>
  179. <dependency>
  180. <groupId>org.apache.pdfbox</groupId>
  181. <artifactId>fontbox</artifactId>
  182. <version>2.0.10</version>
  183. </dependency>
  184. </dependencies>
  185. </project>