pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.yihu.ehr</groupId>
  7. <artifactId>ehr-cloud-parent</artifactId>
  8. <version>1.13.0</version>
  9. </parent>
  10. <artifactId>svr-eip-admin</artifactId>
  11. <version>1.3.0</version>
  12. <packaging>war</packaging>
  13. <name>svr-eip-admin</name>
  14. <description>EIP微服务</description>
  15. <properties>
  16. <org.apache.tiles-version>3.0.5</org.apache.tiles-version>
  17. <!--<main.basedir>${basedir}/../..</main.basedir>-->
  18. <!--<m2eclipse.wtp.contextRoot>/</m2eclipse.wtp.contextRoot>-->
  19. </properties>
  20. <dependencies>
  21. <!-- spring cloud start-->
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-config</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-eureka</artifactId>
  29. <exclusions>
  30. <exclusion>
  31. <artifactId>netty-codec-http</artifactId>
  32. <groupId>io.netty</groupId>
  33. </exclusion>
  34. <exclusion>
  35. <artifactId>netty-transport</artifactId>
  36. <groupId>io.netty</groupId>
  37. </exclusion>
  38. <exclusion>
  39. <artifactId>netty-transport-native-epoll</artifactId>
  40. <groupId>io.netty</groupId>
  41. </exclusion>
  42. <exclusion>
  43. <artifactId>netty-handler</artifactId>
  44. <groupId>io.netty</groupId>
  45. </exclusion>
  46. <exclusion>
  47. <artifactId>netty-buffer</artifactId>
  48. <groupId>io.netty</groupId>
  49. </exclusion>
  50. <exclusion>
  51. <artifactId>netty-codec</artifactId>
  52. <groupId>io.netty</groupId>
  53. </exclusion>
  54. <exclusion>
  55. <artifactId>commons-lang</artifactId>
  56. <groupId>commons-lang</groupId>
  57. </exclusion>
  58. </exclusions>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.springframework.cloud</groupId>
  62. <artifactId>spring-cloud-starter</artifactId>
  63. <exclusions>
  64. <exclusion>
  65. <groupId>ch.qos.logback</groupId>
  66. <artifactId>logback-classic</artifactId>
  67. </exclusion>
  68. </exclusions>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.cloud</groupId>
  72. <artifactId>spring-cloud-starter-feign</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-actuator</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.cloud</groupId>
  80. <artifactId>spring-cloud-starter-zuul</artifactId>
  81. <exclusions>
  82. <exclusion>
  83. <artifactId>aspectjweaver</artifactId>
  84. <groupId>org.aspectj</groupId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <!-- spring cloud end -->
  89. <!-- jwt start -->
  90. <dependency>
  91. <groupId>io.jsonwebtoken</groupId>
  92. <artifactId>jjwt</artifactId>
  93. <version>0.7.0</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-starter-security</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>org.projectlombok</groupId>
  101. <artifactId>lombok</artifactId>
  102. <version>1.16.16</version>
  103. <scope>provided</scope>
  104. </dependency>
  105. <dependency>
  106. <groupId>org.springframework.data</groupId>
  107. <artifactId>spring-data-jpa</artifactId>
  108. </dependency>
  109. <dependency>
  110. <groupId>org.springframework.boot</groupId>
  111. <artifactId>spring-boot-starter-data-jpa</artifactId>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.hibernate.javax.persistence</groupId>
  115. <artifactId>hibernate-jpa-2.1-api</artifactId>
  116. <version>1.0.0.Final</version>
  117. </dependency>
  118. <!-- jwt end -->
  119. <dependency>
  120. <groupId>org.springframework.boot</groupId>
  121. <artifactId>spring-boot-starter-web</artifactId>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.springframework.boot</groupId>
  125. <artifactId>spring-boot-starter-cache</artifactId>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.apache.tomcat.embed</groupId>
  129. <artifactId>tomcat-embed-jasper</artifactId>
  130. <scope>compile</scope>
  131. </dependency>
  132. <!--jxl导出工具-->
  133. <dependency>
  134. <groupId>net.sourceforge.jexcelapi</groupId>
  135. <artifactId>jxl</artifactId>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework</groupId>
  139. <artifactId>spring-orm</artifactId>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.apache.xmlgraphics</groupId>
  143. <artifactId>fop</artifactId>
  144. <version>1.0</version>
  145. <scope>provided</scope>
  146. </dependency>
  147. <dependency>
  148. <groupId>xalan</groupId>
  149. <artifactId>xalan</artifactId>
  150. <version>2.7.0</version>
  151. <scope>provided</scope>
  152. </dependency>
  153. <dependency>
  154. <groupId>org.openoffice</groupId>
  155. <artifactId>jurt</artifactId>
  156. <version>2.3.0</version>
  157. <scope>provided</scope>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.openoffice</groupId>
  161. <artifactId>juh</artifactId>
  162. <version>2.3.0</version>
  163. <scope>provided</scope>
  164. </dependency>
  165. <dependency>
  166. <groupId>net.sf.json-lib</groupId>
  167. <artifactId>json-lib</artifactId>
  168. <version>2.4</version>
  169. <exclusions>
  170. <exclusion>
  171. <artifactId>commons-lang</artifactId>
  172. <groupId>commons-lang</groupId>
  173. </exclusion>
  174. </exclusions>
  175. </dependency>
  176. <dependency>
  177. <groupId>org.springframework</groupId>
  178. <artifactId>spring-jms</artifactId>
  179. <version>4.3.2.RELEASE</version>
  180. </dependency>
  181. <!-- https://mvnrepository.com/artifact/org.aspectj/aspectjweaver -->
  182. <dependency>
  183. <groupId>org.aspectj</groupId>
  184. <artifactId>aspectjweaver</artifactId>
  185. <version>1.8.9</version>
  186. </dependency>
  187. <dependency>
  188. <groupId>org.apache.commons</groupId>
  189. <artifactId>commons-dbcp2</artifactId>
  190. </dependency>
  191. <dependency>
  192. <groupId>org.json</groupId>
  193. <artifactId>json</artifactId>
  194. <version>20140107</version>
  195. </dependency>
  196. <dependency>
  197. <groupId>io.zbus</groupId>
  198. <artifactId>zbus</artifactId>
  199. </dependency>
  200. <!-- test start -->
  201. <dependency>
  202. <groupId>org.springframework.boot</groupId>
  203. <artifactId>spring-boot-starter-test</artifactId>
  204. <scope>test</scope>
  205. <exclusions>
  206. <exclusion>
  207. <artifactId>asm</artifactId>
  208. <groupId>org.ow2.asm</groupId>
  209. </exclusion>
  210. </exclusions>
  211. </dependency>
  212. <!-- test end -->
  213. <!-- swagger start -->
  214. <dependency>
  215. <groupId>com.yihu.ehr</groupId>
  216. <artifactId>commons-ui-swagger</artifactId>
  217. </dependency>
  218. <!-- swagger end -->
  219. <!-- jxl导出工具-->
  220. <dependency>
  221. <groupId>org.apache.poi</groupId>
  222. <artifactId>poi</artifactId>
  223. <version>3.15-beta1</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>org.apache.poi</groupId>
  227. <artifactId>poi-ooxml</artifactId>
  228. <version>3.15-beta1</version>
  229. <exclusions>
  230. <exclusion>
  231. <artifactId>poi</artifactId>
  232. <groupId>org.apache.poi</groupId>
  233. </exclusion>
  234. </exclusions>
  235. </dependency>
  236. <dependency>
  237. <groupId>com.oracle</groupId>
  238. <artifactId>ojdbc6</artifactId>
  239. <version>11.2.0.3</version>
  240. </dependency>
  241. <!-- EIP -->
  242. <dependency>
  243. <groupId>com.yihu.ehr</groupId>
  244. <artifactId>hos-web-framework</artifactId>
  245. <version>${hos-web-framework}</version>
  246. <exclusions>
  247. <exclusion>
  248. <groupId>org.springframework.boot</groupId>
  249. <artifactId>spring-boot-starter-data-jpa</artifactId>
  250. </exclusion>
  251. <exclusion>
  252. <artifactId>fastDFS</artifactId>
  253. <groupId>happy.fish</groupId>
  254. </exclusion>
  255. </exclusions>
  256. </dependency>
  257. <dependency>
  258. <groupId>com.yihu.ehr</groupId>
  259. <artifactId>commons-rest-model</artifactId>
  260. <scope>compile</scope>
  261. <exclusions>
  262. <exclusion>
  263. <artifactId>poi-ooxml</artifactId>
  264. <groupId>org.apache.poi</groupId>
  265. </exclusion>
  266. </exclusions>
  267. </dependency>
  268. <dependency>
  269. <groupId>com.yihu.ehr</groupId>
  270. <artifactId>commons-admin-gateway-model</artifactId>
  271. <scope>compile</scope>
  272. </dependency>
  273. <!-- EHR -->
  274. <dependency>
  275. <groupId>com.yihu.core</groupId>
  276. <artifactId>ehr-dbhelper</artifactId>
  277. <version>1.1.9</version>
  278. </dependency>
  279. <dependency>
  280. <groupId>com.yihu.ehr</groupId>
  281. <artifactId>commons-data-fastdfs</artifactId>
  282. <version>${version.ehr}</version>
  283. </dependency>
  284. <dependency>
  285. <groupId>com.yihu.ehr</groupId>
  286. <artifactId>commons-rest-model</artifactId>
  287. <version>${version.ehr}</version>
  288. <exclusions>
  289. <exclusion>
  290. <artifactId>poi-ooxml</artifactId>
  291. <groupId>org.apache.poi</groupId>
  292. </exclusion>
  293. </exclusions>
  294. </dependency>
  295. <dependency>
  296. <groupId>org.springframework.session</groupId>
  297. <artifactId>spring-session</artifactId>
  298. <version>1.3.1.RELEASE</version>
  299. </dependency>
  300. <!--<dependency>-->
  301. <!--<groupId>org.csource</groupId>-->
  302. <!--<artifactId>fastdfs-client-java</artifactId>-->
  303. <!--<version>1.27</version>-->
  304. <!--</dependency>-->
  305. <dependency>
  306. <groupId>com.yihu.ehr</groupId>
  307. <artifactId>commons-data-redis</artifactId>
  308. <scope>compile</scope>
  309. </dependency>
  310. </dependencies>
  311. <build>
  312. <plugins>
  313. <plugin>
  314. <groupId>org.springframework.boot</groupId>
  315. <artifactId>spring-boot-maven-plugin</artifactId>
  316. <version>${version.spring-boot}</version>
  317. <executions>
  318. <execution>
  319. <goals>
  320. <goal>repackage</goal>
  321. </goals>
  322. </execution>
  323. </executions>
  324. <configuration>
  325. <mainClass>com.yihu.hos.HosAdminApplication</mainClass>
  326. </configuration>
  327. </plugin>
  328. </plugins>
  329. </build>
  330. </project>