pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <groupId>com.hrsk.cloud</groupId>
  5. <artifactId>egress-gateway-service</artifactId>
  6. <version>1.0</version>
  7. <packaging>pom</packaging>
  8. <description>惠融数科基于COLA构建的应用骨架</description>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  13. <atlantis-component.version>1.0.0</atlantis-component.version>
  14. <spring-boot.version>2.7.6</spring-boot.version>
  15. <spring-cloud-alibaba.version>2021.0.5.0</spring-cloud-alibaba.version>
  16. <mybatis-starter.version>2.3.1</mybatis-starter.version>
  17. <mybatis-plus.version>3.5.4.1</mybatis-plus.version>
  18. <druid-starter.version>1.2.9</druid-starter.version>
  19. <guava.version>33.2.1-jre</guava.version>
  20. <hessian.version>4.0.60</hessian.version>
  21. <flyway-core.version>7.15.0</flyway-core.version>
  22. <json-path.version>2.7.0</json-path.version>
  23. <beetl.version>3.9.3.RELEASE</beetl.version>
  24. <commons-codec.version>1.15</commons-codec.version>
  25. <fast2-json>2.0.25</fast2-json>
  26. <redis.version>2.7.1</redis.version>
  27. <commons-io.version>1.3.2</commons-io.version>
  28. </properties>
  29. <dependencies>
  30. <dependency>
  31. <groupId>org.projectlombok</groupId>
  32. <artifactId>lombok</artifactId>
  33. <scope>provided</scope>
  34. </dependency>
  35. <dependency>
  36. <groupId>junit</groupId>
  37. <artifactId>junit</artifactId>
  38. <scope>test</scope>
  39. </dependency>
  40. </dependencies>
  41. <dependencyManagement>
  42. <dependencies>
  43. <!-- 应用模块依赖-start -->
  44. <dependency>
  45. <groupId>com.hrsk.cloud</groupId>
  46. <artifactId>egress-gateway-service-app</artifactId>
  47. <version>1.0</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.hrsk.cloud</groupId>
  51. <artifactId>egress-gateway-service-adapter</artifactId>
  52. <version>1.0</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.hrsk.cloud</groupId>
  56. <artifactId>egress-gateway-service-client</artifactId>
  57. <version>1.0</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.hrsk.cloud</groupId>
  61. <artifactId>egress-gateway-service-infrastructure</artifactId>
  62. <version>1.0</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.hrsk.cloud</groupId>
  66. <artifactId>egress-gateway-service-domain</artifactId>
  67. <version>1.0</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.alibaba.cola</groupId>
  71. <artifactId>cola-components-bom</artifactId>
  72. <version>4.3.2</version>
  73. <type>pom</type>
  74. <scope>import</scope>
  75. </dependency>
  76. <!-- 应用模块依赖-end -->
  77. <dependency>
  78. <groupId>commons-codec</groupId>
  79. <artifactId>commons-codec</artifactId>
  80. <version>${commons-codec.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>com.hrsk.pangu</groupId>
  84. <artifactId>pangu-component-bom</artifactId>
  85. <version>${atlantis-component.version}</version>
  86. <type>pom</type>
  87. <scope>import</scope>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.boot</groupId>
  91. <artifactId>spring-boot-dependencies</artifactId>
  92. <version>${spring-boot.version}</version>
  93. <type>pom</type>
  94. <scope>import</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.mybatis.spring.boot</groupId>
  98. <artifactId>mybatis-spring-boot-starter</artifactId>
  99. <version>${mybatis-starter.version}</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.alibaba</groupId>
  103. <artifactId>druid-spring-boot-starter</artifactId>
  104. <version>${druid-starter.version}</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.google.guava</groupId>
  108. <artifactId>guava</artifactId>
  109. <version>${guava.version}</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>com.baomidou</groupId>
  113. <artifactId>mybatis-plus-boot-starter</artifactId>
  114. <version>${mybatis-plus.version}</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>com.baomidou</groupId>
  118. <artifactId>mybatis-plus</artifactId>
  119. <version>${mybatis-plus.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.caucho</groupId>
  123. <artifactId>hessian</artifactId>
  124. <version>${hessian.version}</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.jayway.jsonpath</groupId>
  128. <artifactId>json-path</artifactId>
  129. <version>${json-path.version}</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>com.alibaba.fastjson2</groupId>
  133. <artifactId>fastjson2</artifactId>
  134. <version>${fast2-json}</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>com.ibeetl</groupId>
  138. <artifactId>beetl</artifactId>
  139. <version>${beetl.version}</version>
  140. </dependency>
  141. <dependency>
  142. <groupId>org.springframework.boot</groupId>
  143. <artifactId>spring-boot-starter-data-redis</artifactId>
  144. <version>${redis.version}</version>
  145. </dependency>
  146. <dependency>
  147. <groupId>org.apache.commons</groupId>
  148. <artifactId>commons-io</artifactId>
  149. <version>${commons-io.version}</version>
  150. </dependency>
  151. </dependencies>
  152. </dependencyManagement>
  153. <modules>
  154. <module>start</module>
  155. <module>egress-gateway-service-app</module>
  156. <module>egress-gateway-service-adapter</module>
  157. <module>egress-gateway-service-client</module>
  158. <module>egress-gateway-service-infrastructure</module>
  159. <module>egress-gateway-service-domain</module>
  160. </modules>
  161. </project>