pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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. <parent>
  7. <groupId>com.yihu.ehr</groupId>
  8. <artifactId>ehr-ms-parent-pom</artifactId>
  9. <version>1.2.0</version>
  10. <relativePath>ehr-ms-parent-pom/pom.xml</relativePath>
  11. </parent>
  12. <artifactId>svr-health-profile</artifactId>
  13. <!--<packaging>${packaging.type}</packaging>-->
  14. <packaging>war</packaging>
  15. <properties>
  16. <wagonServerId>192.168.1.220</wagonServerId>
  17. <wagonUrl>scp://sand:timeneverstop@192.168.1.221/home/sand/ehr-release</wagonUrl>
  18. </properties>
  19. <dependencies>
  20. <!-- true1 -->
  21. <dependency>
  22. <groupId>org.springframework.boot</groupId>
  23. <artifactId>spring-boot-starter-test</artifactId>
  24. <scope>test</scope>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-feign</artifactId>
  29. <scope>${dependency.scope}</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-config</artifactId>
  34. <scope>${dependency.scope}</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.cloud</groupId>
  38. <artifactId>spring-cloud-starter-eureka</artifactId>
  39. <scope>${dependency.scope}</scope>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.springframework.boot</groupId>
  43. <artifactId>spring-boot-starter-actuator</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>javax.servlet</groupId>
  47. <artifactId>javax.servlet-api</artifactId>
  48. <scope>${dependency.scope}</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>commons-io</groupId>
  52. <artifactId>commons-io</artifactId>
  53. <scope>${dependency.scope}</scope>
  54. </dependency>
  55. <!-- html转图片工具类 -->
  56. <dependency>
  57. <groupId>net.sf.cssbox</groupId>
  58. <artifactId>cssbox</artifactId>
  59. <version>4.11</version>
  60. </dependency>
  61. <!-- 模板工具类 -->
  62. <dependency>
  63. <groupId>org.freemarker</groupId>
  64. <artifactId>freemarker</artifactId>
  65. <version>2.3.23</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>com.yihu.ehr</groupId>
  69. <artifactId>commons-ehr-constants</artifactId>
  70. <scope>compile</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>com.yihu.ehr</groupId>
  74. <artifactId>commons-util</artifactId>
  75. <scope>compile</scope>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.yihu.ehr</groupId>
  79. <artifactId>commons-data-mysql</artifactId>
  80. <scope>compile</scope>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.yihu.ehr</groupId>
  84. <artifactId>commons-rest-model</artifactId>
  85. <scope>compile</scope>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.yihu.hos</groupId>
  89. <artifactId>common-rest-model</artifactId>
  90. <scope>compile</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>com.yihu.ehr</groupId>
  94. <artifactId>commons-data-redis</artifactId>
  95. <scope>compile</scope>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.yihu.ehr</groupId>
  99. <artifactId>commons-ui-swagger</artifactId>
  100. <scope>compile</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.yihu.ehr</groupId>
  104. <artifactId>commons-web</artifactId>
  105. <scope>compile</scope>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.yihu.ehr</groupId>
  109. <artifactId>commons-data-fastdfs</artifactId>
  110. <scope>compile</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.yihu.ehr</groupId>
  114. <artifactId>commons-entity</artifactId>
  115. </dependency>
  116. </dependencies>
  117. </project>