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" 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>ag-admin</artifactId>
  11. <packaging>war</packaging>
  12. <dependencies>
  13. <dependency>
  14. <groupId>org.springframework.boot</groupId>
  15. <artifactId>spring-boot-starter-test</artifactId>
  16. <scope>test</scope>
  17. </dependency>
  18. <dependency>
  19. <groupId>org.springframework.cloud</groupId>
  20. <artifactId>spring-cloud-starter-config</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.cloud</groupId>
  24. <artifactId>spring-cloud-starter-eureka</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter-feign</artifactId>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework.cloud</groupId>
  32. <artifactId>spring-cloud-starter-zuul</artifactId>
  33. </dependency>
  34. <dependency>
  35. <groupId>org.springframework.cloud</groupId>
  36. <artifactId>spring-cloud-starter-ribbon</artifactId>
  37. </dependency>
  38. <dependency>
  39. <groupId>org.springframework.boot</groupId>
  40. <artifactId>spring-boot-starter-actuator</artifactId>
  41. </dependency>
  42. <dependency>
  43. <groupId>javax.servlet</groupId>
  44. <artifactId>javax.servlet-api</artifactId>
  45. </dependency>
  46. <dependency>
  47. <groupId>com.yihu.ehr</groupId>
  48. <artifactId>commons-ehr-constants</artifactId>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.yihu.ehr</groupId>
  52. <artifactId>commons-util</artifactId>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.yihu.ehr</groupId>
  56. <artifactId>commons-rest-model</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.yihu.ehr</groupId>
  60. <artifactId>commons-entity</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.yihu.ehr</groupId>
  64. <artifactId>commons-ui-swagger</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.yihu.ehr</groupId>
  68. <artifactId>commons-web</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.yihu.ehr</groupId>
  72. <artifactId>commons-admin-gateway-model</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.yihu.ehr</groupId>
  76. <artifactId>commons-cat</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>io.github.openfeign.form</groupId>
  80. <artifactId>feign-form</artifactId>
  81. <version>2.1.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>io.github.openfeign.form</groupId>
  85. <artifactId>feign-form-spring</artifactId>
  86. <version>2.1.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>commons-httpclient</groupId>
  90. <artifactId>commons-httpclient</artifactId>
  91. <version>3.1</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.apache.httpcomponents</groupId>
  95. <artifactId>httpclient</artifactId>
  96. <version>4.5.1</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.json</groupId>
  100. <artifactId>json</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.yihu.hos</groupId>
  104. <artifactId>common-rest-model</artifactId>
  105. </dependency>
  106. <dependency>
  107. <groupId>commons-collections</groupId>
  108. <artifactId>commons-collections</artifactId>
  109. </dependency>
  110. </dependencies>
  111. <build>
  112. <plugins>
  113. <plugin>
  114. <groupId>org.springframework.boot</groupId>
  115. <artifactId>spring-boot-maven-plugin</artifactId>
  116. </plugin>
  117. </plugins>
  118. </build>
  119. </project>