pom.xml 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. </properties>
  28. <dependencies>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. <scope>provided</scope>
  33. </dependency>
  34. <dependency>
  35. <groupId>junit</groupId>
  36. <artifactId>junit</artifactId>
  37. <scope>test</scope>
  38. </dependency>
  39. </dependencies>
  40. <dependencyManagement>
  41. <dependencies>
  42. <!-- 应用模块依赖-start -->
  43. <dependency>
  44. <groupId>com.hrsk.cloud</groupId>
  45. <artifactId>egress-gateway-service-app</artifactId>
  46. <version>1.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>com.hrsk.cloud</groupId>
  50. <artifactId>egress-gateway-service-adapter</artifactId>
  51. <version>1.0</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.hrsk.cloud</groupId>
  55. <artifactId>egress-gateway-service-client</artifactId>
  56. <version>1.0</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>com.hrsk.cloud</groupId>
  60. <artifactId>egress-gateway-service-infrastructure</artifactId>
  61. <version>1.0</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.hrsk.cloud</groupId>
  65. <artifactId>egress-gateway-service-domain</artifactId>
  66. <version>1.0</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.alibaba.cola</groupId>
  70. <artifactId>cola-components-bom</artifactId>
  71. <version>4.3.2</version>
  72. <type>pom</type>
  73. <scope>import</scope>
  74. </dependency>
  75. <!-- 应用模块依赖-end -->
  76. <dependency>
  77. <groupId>commons-codec</groupId>
  78. <artifactId>commons-codec</artifactId>
  79. <version>${commons-codec.version}</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.hrsk.pangu</groupId>
  83. <artifactId>pangu-component-bom</artifactId>
  84. <version>${atlantis-component.version}</version>
  85. <type>pom</type>
  86. <scope>import</scope>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.springframework.boot</groupId>
  90. <artifactId>spring-boot-dependencies</artifactId>
  91. <version>${spring-boot.version}</version>
  92. <type>pom</type>
  93. <scope>import</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.mybatis.spring.boot</groupId>
  97. <artifactId>mybatis-spring-boot-starter</artifactId>
  98. <version>${mybatis-starter.version}</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>com.alibaba</groupId>
  102. <artifactId>druid-spring-boot-starter</artifactId>
  103. <version>${druid-starter.version}</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>com.google.guava</groupId>
  107. <artifactId>guava</artifactId>
  108. <version>${guava.version}</version>
  109. </dependency>
  110. <dependency>
  111. <groupId>com.baomidou</groupId>
  112. <artifactId>mybatis-plus-boot-starter</artifactId>
  113. <version>${mybatis-plus.version}</version>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.baomidou</groupId>
  117. <artifactId>mybatis-plus</artifactId>
  118. <version>${mybatis-plus.version}</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.caucho</groupId>
  122. <artifactId>hessian</artifactId>
  123. <version>${hessian.version}</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>com.jayway.jsonpath</groupId>
  127. <artifactId>json-path</artifactId>
  128. <version>${json-path.version}</version>
  129. </dependency>
  130. <dependency>
  131. <groupId>com.alibaba.fastjson2</groupId>
  132. <artifactId>fastjson2</artifactId>
  133. <version>${fast2-json}</version>
  134. </dependency>
  135. <dependency>
  136. <groupId>com.ibeetl</groupId>
  137. <artifactId>beetl</artifactId>
  138. <version>${beetl.version}</version>
  139. </dependency>
  140. <dependency>
  141. <groupId>org.springframework.boot</groupId>
  142. <artifactId>spring-boot-starter-data-redis</artifactId>
  143. <version>${redis.version}</version>
  144. </dependency>
  145. </dependencies>
  146. </dependencyManagement>
  147. <modules>
  148. <module>start</module>
  149. <module>egress-gateway-service-app</module>
  150. <module>egress-gateway-service-adapter</module>
  151. <module>egress-gateway-service-client</module>
  152. <module>egress-gateway-service-infrastructure</module>
  153. <module>egress-gateway-service-domain</module>
  154. </modules>
  155. </project>