pom.xml 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  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>ehr</groupId>
  7. <artifactId>Hos-Resource-WS-xfile</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <properties>
  11. <aspectj.version>1.8.7</aspectj.version>
  12. <jackson.version>2.4.6</jackson.version>
  13. </properties>
  14. <pluginRepositories>
  15. <pluginRepository>
  16. <id>pluginCentral</id>
  17. <name>pluginCentral</name>
  18. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  19. </pluginRepository>
  20. <pluginRepository>
  21. <id>pluginReleases</id>
  22. <name>pluginReleases</name>
  23. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  24. </pluginRepository>
  25. </pluginRepositories>
  26. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  27. <distributionManagement>
  28. <repository>
  29. <id>Releases</id>
  30. <name>Releases</name>
  31. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  32. </repository>
  33. <snapshotRepository>
  34. <id>snapshots</id>
  35. <name>Snapshots</name>
  36. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  37. </snapshotRepository>
  38. </distributionManagement>
  39. <repositories>
  40. <repository>
  41. <id>repositoryCentral</id>
  42. <name>repositoryCentral</name>
  43. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  44. </repository>
  45. <repository>
  46. <id>repositoryReleases</id>
  47. <name>repositoryReleases</name>
  48. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  49. </repository>
  50. </repositories>
  51. <dependencies>
  52. <!--=============数据库驱动 start =============-->
  53. <dependency>
  54. <groupId>com.yihu.core</groupId>
  55. <artifactId>ehr-dbhelper</artifactId>
  56. <version>1.1.8</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>mysql</groupId>
  60. <artifactId>mysql-connector-java</artifactId>
  61. <version>5.1.38</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.oracle</groupId>
  65. <artifactId>ojdbc6</artifactId>
  66. <version>11.2.0.3.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>org.xerial</groupId>
  70. <artifactId>sqlite-jdbc</artifactId>
  71. <version>3.8.11.2</version>
  72. </dependency>
  73. <!--=============数据库驱动 end =============-->
  74. <dependency>
  75. <groupId>net.sf.json-lib</groupId>
  76. <artifactId>json-lib</artifactId>
  77. <version>2.4</version>
  78. </dependency>
  79. <dependency>
  80. <groupId>org.json</groupId>
  81. <artifactId>json</artifactId>
  82. <version>20151123</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>xom</groupId>
  86. <artifactId>xom</artifactId>
  87. <version>1.2.5</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>commons-beanutils</groupId>
  91. <artifactId>commons-beanutils</artifactId>
  92. <version>1.9.2</version>
  93. </dependency>
  94. <dependency>
  95. <groupId>commons-codec</groupId>
  96. <artifactId>commons-codec</artifactId>
  97. <version>1.10</version>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.apache.commons</groupId>
  101. <artifactId>commons-dbcp2</artifactId>
  102. <version>2.1</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>commons-configuration</groupId>
  106. <artifactId>commons-configuration</artifactId>
  107. <version>1.10</version>
  108. </dependency>
  109. <dependency>
  110. <groupId>commons-dbutils</groupId>
  111. <artifactId>commons-dbutils</artifactId>
  112. <version>1.6</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>dom4j</groupId>
  116. <artifactId>dom4j</artifactId>
  117. <version>1.6.1</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>net.lingala.zip4j</groupId>
  121. <artifactId>zip4j</artifactId>
  122. <version>1.3.2</version>
  123. </dependency>
  124. <!--=============log4j start =============-->
  125. <dependency>
  126. <groupId>org.slf4j</groupId>
  127. <artifactId>slf4j-nop</artifactId>
  128. <version>1.7.13</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>org.slf4j</groupId>
  132. <artifactId>slf4j-api</artifactId>
  133. <version>1.7.12</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>org.apache.logging.log4j</groupId>
  137. <artifactId>log4j-core</artifactId>
  138. <version>2.4.1</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.apache.logging.log4j</groupId>
  142. <artifactId>log4j-api</artifactId>
  143. <version>2.4.1</version>
  144. </dependency>
  145. <dependency>
  146. <groupId>log4j</groupId>
  147. <artifactId>log4j</artifactId>
  148. <version>1.2.17</version>
  149. </dependency>
  150. <!--=============log4j end =============-->
  151. <dependency>
  152. <groupId>javax.servlet</groupId>
  153. <artifactId>javax.servlet-api</artifactId>
  154. <version>3.1.0</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>jstl</groupId>
  158. <artifactId>jstl</artifactId>
  159. <version>1.2</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>com.fasterxml.jackson.core</groupId>
  163. <artifactId>jackson-core</artifactId>
  164. <version>${jackson.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>com.fasterxml.jackson.core</groupId>
  168. <artifactId>jackson-annotations</artifactId>
  169. <version>${jackson.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>com.fasterxml.jackson.core</groupId>
  173. <artifactId>jackson-databind</artifactId>
  174. <version>${jackson.version}</version>
  175. </dependency>
  176. <!--=============httpclient start=============-->
  177. <dependency>
  178. <groupId>org.apache.httpcomponents</groupId>
  179. <artifactId>httpclient</artifactId>
  180. <version>4.5.1</version>
  181. </dependency>
  182. <dependency>
  183. <groupId>org.apache.httpcomponents</groupId>
  184. <artifactId>httpmime</artifactId>
  185. <version>4.5.1</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.httpcomponents</groupId>
  189. <artifactId>httpcore</artifactId>
  190. <version>4.4.3</version>
  191. </dependency>
  192. <dependency>
  193. <groupId>ant</groupId>
  194. <artifactId>ant</artifactId>
  195. <version>1.7.0</version>
  196. </dependency>
  197. <dependency>
  198. <groupId>org.codehaus.xfire</groupId>
  199. <artifactId>xfire-all</artifactId>
  200. <version>1.2.6</version>
  201. </dependency>
  202. <!--=============httpclient end=============-->
  203. </dependencies>
  204. <build>
  205. <plugins>
  206. <plugin>
  207. <groupId>org.apache.maven.plugins</groupId>
  208. <artifactId>maven-compiler-plugin</artifactId>
  209. <configuration>
  210. <source>1.8</source>
  211. <target>1.8</target>
  212. </configuration>
  213. </plugin>
  214. </plugins>
  215. </build>
  216. </project>