pom.xml 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232
  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</groupId>
  7. <artifactId>hos-core-dependencies</artifactId>
  8. <version>1.1.1-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.8</source>
  17. <target>1.8</target>
  18. </configuration>
  19. </plugin>
  20. </plugins>
  21. </build>
  22. <properties>
  23. <!--<jackson.version>2.4.6</jackson.version>-->
  24. <version.log4j>1.2.17</version.log4j>
  25. <version.log4j-over-slf4j>1.7.21</version.log4j-over-slf4j>
  26. <version.log4j2>2.4.1</version.log4j2>
  27. <version.jcl-over-slf4j>1.7.19</version.jcl-over-slf4j>
  28. <version.jul-over-slf4j>1.7.21</version.jul-over-slf4j>
  29. <version.slf4j>1.7.21</version.slf4j>
  30. </properties>
  31. <pluginRepositories>
  32. <pluginRepository>
  33. <id>pluginCentral</id>
  34. <name>pluginCentral</name>
  35. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  36. </pluginRepository>
  37. <pluginRepository>
  38. <id>pluginReleases</id>
  39. <name>pluginReleases</name>
  40. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  41. </pluginRepository>
  42. </pluginRepositories>
  43. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  44. <distributionManagement>
  45. <repository>
  46. <id>Releases</id>
  47. <name>Releases</name>
  48. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  49. </repository>
  50. <snapshotRepository>
  51. <id>snapshots</id>
  52. <name>Snapshots</name>
  53. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  54. </snapshotRepository>
  55. </distributionManagement>
  56. <repositories>
  57. <repository>
  58. <id>repositoryCentral</id>
  59. <name>repositoryCentral</name>
  60. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  61. </repository>
  62. <repository>
  63. <id>repositoryReleases</id>
  64. <name>repositoryReleases</name>
  65. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  66. </repository>
  67. </repositories>
  68. <dependencies>
  69. <!--zip start-->
  70. <dependency>
  71. <groupId>net.lingala.zip4j</groupId>
  72. <artifactId>zip4j</artifactId>
  73. <version>1.3.2</version>
  74. </dependency>
  75. <!--zip end-->
  76. <!--commons start-->
  77. <dependency>
  78. <groupId>org.apache.commons</groupId>
  79. <artifactId>commons-collections4</artifactId>
  80. <version>4.0</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-fileupload</groupId>
  84. <artifactId>commons-fileupload</artifactId>
  85. <version>1.3.1</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.apache.commons</groupId>
  89. <artifactId>commons-lang3</artifactId>
  90. <version>3.3.2</version>
  91. </dependency>
  92. <dependency>
  93. <groupId>commons-net</groupId>
  94. <artifactId>commons-net</artifactId>
  95. <version>3.3</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>commons-beanutils</groupId>
  99. <artifactId>commons-beanutils</artifactId>
  100. <version>1.9.2</version>
  101. </dependency>
  102. <!--commons end-->
  103. <!--httpclient start-->
  104. <dependency>
  105. <groupId>org.apache.httpcomponents</groupId>
  106. <artifactId>httpclient</artifactId>
  107. <version>4.5.1</version>
  108. <exclusions>
  109. <exclusion>
  110. <groupId>commons-logging</groupId>
  111. <artifactId>commons-logging</artifactId>
  112. </exclusion>
  113. </exclusions>
  114. </dependency>
  115. <dependency>
  116. <groupId>org.apache.httpcomponents</groupId>
  117. <artifactId>httpmime</artifactId>
  118. <version>4.5.1</version>
  119. </dependency>
  120. <!--httpclient end-->
  121. <!--pinyin4j start-->
  122. <dependency>
  123. <groupId>com.belerweb</groupId>
  124. <artifactId>pinyin4j</artifactId>
  125. <version>2.5.0</version>
  126. </dependency>
  127. <!--pinyin4j end-->
  128. <!--cxf start-->
  129. <dependency>
  130. <groupId>org.apache.cxf</groupId>
  131. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  132. <version>3.0.0</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.apache.cxf</groupId>
  136. <artifactId>cxf-rt-transports-http</artifactId>
  137. <version>3.0.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.apache.cxf</groupId>
  141. <artifactId>cxf-rt-bindings-soap</artifactId>
  142. <version>3.0.0</version>
  143. </dependency>
  144. <!--cxf end-->
  145. <!--jackson start-->
  146. <dependency>
  147. <groupId>com.fasterxml.jackson.core</groupId>
  148. <artifactId>jackson-core</artifactId>
  149. <version>2.4.6</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>com.fasterxml.jackson.core</groupId>
  153. <artifactId>jackson-databind</artifactId>
  154. <version>2.4.6</version>
  155. </dependency>
  156. <!--jackson end-->
  157. <!-- Log framework start-->
  158. <dependency>
  159. <groupId>log4j</groupId>
  160. <artifactId>log4j</artifactId>
  161. <version>${version.log4j}</version>
  162. </dependency>
  163. <dependency>
  164. <groupId>org.apache.logging.log4j</groupId>
  165. <artifactId>log4j-api</artifactId>
  166. <version>${version.log4j2}</version>
  167. </dependency>
  168. <dependency>
  169. <groupId>org.apache.logging.log4j</groupId>
  170. <artifactId>log4j-core</artifactId>
  171. <version>${version.log4j2}</version>
  172. </dependency>
  173. <!--SLF4J api-->
  174. <dependency>
  175. <groupId>org.slf4j</groupId>
  176. <artifactId>slf4j-api</artifactId>
  177. <version>${version.slf4j}</version>
  178. </dependency>
  179. <!--Log framework to SLF4J bridge: x-over-slf4j-->
  180. <dependency>
  181. <groupId>org.slf4j</groupId>
  182. <artifactId>jcl-over-slf4j</artifactId>
  183. <version>${version.jcl-over-slf4j}</version>
  184. <exclusions>
  185. <exclusion>
  186. <groupId>org.slf4j</groupId>
  187. <artifactId>slf4j-jdk14</artifactId>
  188. </exclusion>
  189. </exclusions>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.slf4j</groupId>
  193. <artifactId>jul-to-slf4j</artifactId>
  194. <version>${version.jul-over-slf4j}</version>
  195. <exclusions>
  196. <exclusion>
  197. <groupId>org.slf4j</groupId>
  198. <artifactId>slf4j-log4j12</artifactId>
  199. </exclusion>
  200. </exclusions>
  201. </dependency>
  202. <dependency>
  203. <groupId>org.slf4j</groupId>
  204. <artifactId>log4j-over-slf4j</artifactId>
  205. <version>${version.log4j-over-slf4j}</version>
  206. </dependency>
  207. <!-- Log framework end-->
  208. <dependency>
  209. <groupId>com.yihu.core</groupId>
  210. <artifactId>ehr-dbhelper</artifactId>
  211. <version>1.1.9</version>
  212. </dependency>
  213. <dependency>
  214. <groupId>com.yihu.core</groupId>
  215. <artifactId>html2image</artifactId>
  216. <version>0.9</version>
  217. </dependency>
  218. </dependencies>
  219. </project>