pom.xml 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  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.ywt</groupId>
  8. <artifactId>ywt-parent</artifactId>
  9. <version>1.0.0-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>ywt-platform-outpatient-parent</artifactId>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <packaging>pom</packaging>
  14. <properties>
  15. <service.version>1.0.0-SNAPSHOT</service.version>
  16. <anytxn-biz-common.version>1.0.0-SNAPSHOT</anytxn-biz-common.version>
  17. <commons-csv.version>1.6</commons-csv.version>
  18. <java-jwt.version>3.9.0</java-jwt.version>
  19. <ywt-platform-outpatient-base.version>1.0.0-SNAPSHOT</ywt-platform-outpatient-base.version>
  20. <ywt-platform-outpatient-common.version>1.0.0-SNAPSHOT</ywt-platform-outpatient-common.version>
  21. <ywt-platform-baseservice-base.version>1.0.0-SNAPSHOT</ywt-platform-baseservice-base.version>
  22. <ywt-platform-pay-base.version>1.0.0-SNAPSHOT</ywt-platform-pay-base.version>
  23. <ywt-platform-internethospital-base.version>1.0.0-SNAPSHOT</ywt-platform-internethospital-base.version>
  24. <ywt-platform-prescription-base.version>1.0.0-SNAPSHOT</ywt-platform-prescription-base.version>
  25. <ywt-platform-order-base.version>1.0.0-SNAPSHOT</ywt-platform-order-base.version>
  26. <ywt-biz-common.version>1.0.0-SNAPSHOT</ywt-biz-common.version>
  27. </properties>
  28. <modules>
  29. <module>ywt-platform-outpatient-common</module>
  30. <module>ywt-platform-outpatient-base</module>
  31. <module>ywt-platform-outpatient-sdk</module>
  32. <module>ywt-platform-outpatient-web</module>
  33. <module>ywt-platform-outpatient-rpc</module>
  34. <module>consumer</module>
  35. <module>ywt-platform-outpatient-batch</module>
  36. </modules>
  37. <dependencyManagement>
  38. <dependencies>
  39. <dependency>
  40. <groupId>com.ywt</groupId>
  41. <artifactId>ywt-platform-outpatient-sdk</artifactId>
  42. <version>${service.version}</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.ywt</groupId>
  46. <artifactId>ywt-platform-outpatient-base</artifactId>
  47. <version>${ywt-platform-outpatient-base.version}</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.ywt</groupId>
  51. <artifactId>ywt-platform-outpatient-common</artifactId>
  52. <version>${ywt-platform-outpatient-common.version}</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.ywt</groupId>
  56. <artifactId>ywt-platform-baseservice-base</artifactId>
  57. <version>${ywt-platform-baseservice-base.version}</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.ywt</groupId>
  61. <artifactId>ywt-platform-pay-base</artifactId>
  62. <version>${ywt-platform-pay-base.version}</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.ywt</groupId>
  66. <artifactId>ywt-platform-internethospital-base</artifactId>
  67. <version>${ywt-platform-internethospital-base.version}</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.ywt</groupId>
  71. <artifactId>ywt-platform-prescription-base</artifactId>
  72. <version>${ywt-platform-prescription-base.version}</version>
  73. </dependency>
  74. <dependency>
  75. <groupId>com.ywt</groupId>
  76. <artifactId>ywt-platform-order-base</artifactId>
  77. <version>${ywt-platform-order-base.version}</version>
  78. </dependency>
  79. <!-- common 引入-->
  80. <dependency>
  81. <groupId>com.ywt</groupId>
  82. <artifactId>ywt-biz-common</artifactId>
  83. <version>${ywt-biz-common.version}</version>
  84. </dependency>
  85. <dependency>
  86. <groupId>com.ywt</groupId>
  87. <artifactId>ywt-platform-outpatient-web</artifactId>
  88. <version>${service.version}</version>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.ywt</groupId>
  92. <artifactId>ywt-platform-outpatient-rpc</artifactId>
  93. <version>${service.version}</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.ywt</groupId>
  97. <artifactId>anytxn-biz-common</artifactId>
  98. <version>${anytxn-biz-common.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.apache.commons</groupId>
  102. <artifactId>commons-csv</artifactId>
  103. <version>${commons-csv.version}</version>
  104. </dependency>
  105. <!-- https://mvnrepository.com/artifact/com.auth0/java-jwt -->
  106. <dependency>
  107. <groupId>com.auth0</groupId>
  108. <artifactId>java-jwt</artifactId>
  109. <version>${java-jwt.version}</version>
  110. </dependency>
  111. </dependencies>
  112. </dependencyManagement>
  113. <dependencies>
  114. <dependency>
  115. <groupId>org.springframework.cloud</groupId>
  116. <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
  117. <version>2.2.10.RELEASE</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>com.ywt</groupId>
  121. <artifactId>ywt-biz-common</artifactId>
  122. <version>${ywt-biz-common.version}</version>
  123. </dependency>
  124. </dependencies>
  125. </project>