pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342
  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</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. <spring.version>4.1.8.RELEASE</spring.version>
  14. </properties>
  15. <pluginRepositories>
  16. <pluginRepository>
  17. <id>pluginCentral</id>
  18. <name>pluginCentral</name>
  19. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  20. </pluginRepository>
  21. <pluginRepository>
  22. <id>pluginReleases</id>
  23. <name>pluginReleases</name>
  24. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  25. </pluginRepository>
  26. </pluginRepositories>
  27. <!--用于发布到服务器 对应setting的对应server表情里面的id -->
  28. <distributionManagement>
  29. <repository>
  30. <id>Releases</id>
  31. <name>Releases</name>
  32. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  33. </repository>
  34. <snapshotRepository>
  35. <id>snapshots</id>
  36. <name>Snapshots</name>
  37. <url>http://172.19.103.47:8081/nexus/content/repositories/snapshots/</url>
  38. </snapshotRepository>
  39. </distributionManagement>
  40. <repositories>
  41. <repository>
  42. <id>repositoryCentral</id>
  43. <name>repositoryCentral</name>
  44. <url>http://172.19.103.47:8081/nexus/content/repositories/central/</url>
  45. </repository>
  46. <repository>
  47. <id>repositoryReleases</id>
  48. <name>repositoryReleases</name>
  49. <url>http://172.19.103.47:8081/nexus/content/repositories/releases/</url>
  50. </repository>
  51. </repositories>
  52. <dependencies>
  53. <!--=============数据库驱动 start =============-->
  54. <dependency>
  55. <groupId>com.yihu.core</groupId>
  56. <artifactId>ehr-dbhelper</artifactId>
  57. <version>1.1.8</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>mysql</groupId>
  61. <artifactId>mysql-connector-java</artifactId>
  62. <version>5.1.38</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.oracle</groupId>
  66. <artifactId>ojdbc6</artifactId>
  67. <version>11.2.0.3.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>org.xerial</groupId>
  71. <artifactId>sqlite-jdbc</artifactId>
  72. <version>3.8.11.2</version>
  73. </dependency>
  74. <!--=============数据库驱动 end =============-->
  75. <dependency>
  76. <groupId>net.sf.json-lib</groupId>
  77. <artifactId>json-lib</artifactId>
  78. <version>2.4</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>org.json</groupId>
  82. <artifactId>json</artifactId>
  83. <version>20151123</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>xom</groupId>
  87. <artifactId>xom</artifactId>
  88. <version>1.2.5</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>commons-beanutils</groupId>
  92. <artifactId>commons-beanutils</artifactId>
  93. <version>1.9.2</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>commons-codec</groupId>
  97. <artifactId>commons-codec</artifactId>
  98. <version>1.10</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-dbcp2</artifactId>
  103. <version>2.1</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>commons-configuration</groupId>
  107. <artifactId>commons-configuration</artifactId>
  108. <version>1.10</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>commons-dbutils</groupId>
  112. <artifactId>commons-dbutils</artifactId>
  113. <version>1.6</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>dom4j</groupId>
  117. <artifactId>dom4j</artifactId>
  118. <version>1.6.1</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>net.lingala.zip4j</groupId>
  122. <artifactId>zip4j</artifactId>
  123. <version>1.3.2</version>
  124. </dependency>
  125. <!--=============spring start =============-->
  126. <dependency>
  127. <groupId>org.springframework</groupId>
  128. <artifactId>spring-aop</artifactId>
  129. <version>${spring.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>org.springframework</groupId>
  133. <artifactId>spring-aspects</artifactId>
  134. <version>${spring.version}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>org.springframework</groupId>
  138. <artifactId>spring-beans</artifactId>
  139. <version>${spring.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework</groupId>
  143. <artifactId>spring-context</artifactId>
  144. <version>${spring.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.springframework</groupId>
  148. <artifactId>spring-context-support</artifactId>
  149. <version>${spring.version}</version>
  150. </dependency>
  151. <dependency>
  152. <groupId>org.springframework</groupId>
  153. <artifactId>spring-core</artifactId>
  154. <version>${spring.version}</version>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework</groupId>
  158. <artifactId>spring-expression</artifactId>
  159. <version>${spring.version}</version>
  160. </dependency>
  161. <dependency>
  162. <groupId>org.springframework</groupId>
  163. <artifactId>spring-jdbc</artifactId>
  164. <version>${spring.version}</version>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.springframework</groupId>
  168. <artifactId>spring-tx</artifactId>
  169. <version>${spring.version}</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>org.springframework</groupId>
  173. <artifactId>spring-web</artifactId>
  174. <version>${spring.version}</version>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework</groupId>
  178. <artifactId>spring-webmvc</artifactId>
  179. <version>${spring.version}</version>
  180. </dependency>
  181. <dependency>
  182. <groupId>org.springframework</groupId>
  183. <artifactId>spring-webmvc-portlet</artifactId>
  184. <version>${spring.version}</version>
  185. </dependency>
  186. <dependency>
  187. <groupId>org.springframework</groupId>
  188. <artifactId>spring-websocket</artifactId>
  189. <version>${spring.version}</version>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.springframework</groupId>
  193. <artifactId>spring-test</artifactId>
  194. <version>${spring.version}</version>
  195. <scope>test</scope>
  196. </dependency>
  197. <!--=============spring end =============-->
  198. <!--=============log4j start =============-->
  199. <dependency>
  200. <groupId>org.slf4j</groupId>
  201. <artifactId>slf4j-nop</artifactId>
  202. <version>1.7.13</version>
  203. </dependency>
  204. <dependency>
  205. <groupId>org.slf4j</groupId>
  206. <artifactId>slf4j-api</artifactId>
  207. <version>1.7.12</version>
  208. </dependency>
  209. <dependency>
  210. <groupId>org.apache.logging.log4j</groupId>
  211. <artifactId>log4j-core</artifactId>
  212. <version>2.4.1</version>
  213. </dependency>
  214. <dependency>
  215. <groupId>org.apache.logging.log4j</groupId>
  216. <artifactId>log4j-api</artifactId>
  217. <version>2.4.1</version>
  218. </dependency>
  219. <dependency>
  220. <groupId>log4j</groupId>
  221. <artifactId>log4j</artifactId>
  222. <version>1.2.17</version>
  223. </dependency>
  224. <!--=============log4j end =============-->
  225. <dependency>
  226. <groupId>javax.servlet</groupId>
  227. <artifactId>javax.servlet-api</artifactId>
  228. <version>3.1.0</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>jstl</groupId>
  232. <artifactId>jstl</artifactId>
  233. <version>1.2</version>
  234. </dependency>
  235. <dependency>
  236. <groupId>com.fasterxml.jackson.core</groupId>
  237. <artifactId>jackson-core</artifactId>
  238. <version>${jackson.version}</version>
  239. </dependency>
  240. <dependency>
  241. <groupId>com.fasterxml.jackson.core</groupId>
  242. <artifactId>jackson-annotations</artifactId>
  243. <version>${jackson.version}</version>
  244. </dependency>
  245. <dependency>
  246. <groupId>com.fasterxml.jackson.core</groupId>
  247. <artifactId>jackson-databind</artifactId>
  248. <version>${jackson.version}</version>
  249. </dependency>
  250. <!--=============tilesJSP布局框架 start =============-->
  251. <dependency>
  252. <groupId>org.apache.tiles</groupId>
  253. <artifactId>tiles-extras</artifactId>
  254. <version>3.0.5</version>
  255. </dependency>
  256. <!--=============tiles end =============-->
  257. <!--=============httpclient start=============-->
  258. <dependency>
  259. <groupId>org.apache.httpcomponents</groupId>
  260. <artifactId>httpclient</artifactId>
  261. <version>4.5.1</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.httpcomponents</groupId>
  265. <artifactId>httpmime</artifactId>
  266. <version>4.5.1</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>org.apache.httpcomponents</groupId>
  270. <artifactId>httpcore</artifactId>
  271. <version>4.4.3</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>ant</groupId>
  275. <artifactId>ant</artifactId>
  276. <version>1.7.0</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.cxf</groupId>
  280. <artifactId>cxf-rt-frontend-jaxws</artifactId>
  281. <version>3.0.0</version>
  282. </dependency>
  283. <dependency>
  284. <groupId>org.apache.cxf</groupId>
  285. <artifactId>cxf-rt-transports-http</artifactId>
  286. <version>3.0.0</version>
  287. </dependency>
  288. <dependency>
  289. <groupId>org.apache.cxf</groupId>
  290. <artifactId>cxf-rt-bindings-soap</artifactId>
  291. <version>3.0.0</version>
  292. </dependency>
  293. <dependency>
  294. <groupId>com.thoughtworks.xstream</groupId>
  295. <artifactId>xstream</artifactId>
  296. <version>1.4.8</version>
  297. </dependency>
  298. <!--=============httpclient end=============-->
  299. </dependencies>
  300. <build>
  301. <plugins>
  302. <plugin>
  303. <groupId>org.apache.maven.plugins</groupId>
  304. <artifactId>maven-compiler-plugin</artifactId>
  305. <configuration>
  306. <source>1.8</source>
  307. <target>1.8</target>
  308. </configuration>
  309. </plugin>
  310. </plugins>
  311. </build>
  312. </project>