pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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-SNAPSHOT</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. <mybatis-plus.version>3.5.4.1</mybatis-plus.version>
  16. <druid-starter.version>1.2.9</druid-starter.version>
  17. <commons-lang3.version>3.9</commons-lang3.version>
  18. <commons-codec.version>1.16.1</commons-codec.version>
  19. <cola.components.version>>4.3.2</cola.components.version>
  20. <hessian.version>4.0.60</hessian.version>
  21. <http.version>4.5.5</http.version>
  22. <common-pools.version>2.4.2</common-pools.version>
  23. <mybatis-plus-generator.version>3.5.1</mybatis-plus-generator.version>
  24. <fast2json.version>2.0.7</fast2json.version>
  25. <guva.version>33.2.1-jre</guva.version>
  26. <jedis.version>4.2.2</jedis.version>
  27. <jetcache.version>2.5.14</jetcache.version>
  28. <redis.version>2.7.6</redis.version>
  29. </properties>
  30. <dependencies>
  31. <dependency>
  32. <groupId>org.projectlombok</groupId>
  33. <artifactId>lombok</artifactId>
  34. <scope>provided</scope>
  35. </dependency>
  36. <dependency>
  37. <groupId>junit</groupId>
  38. <artifactId>junit</artifactId>
  39. <scope>test</scope>
  40. </dependency>
  41. </dependencies>
  42. <dependencyManagement>
  43. <dependencies>
  44. <!-- 应用模块依赖-start -->
  45. <dependency>
  46. <groupId>com.hrsk.cloud</groupId>
  47. <artifactId>start</artifactId>
  48. <version>1.0-SNAPSHOT</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.hrsk.cloud</groupId>
  52. <artifactId>egress-gateway-service-app</artifactId>
  53. <version>1.0-SNAPSHOT</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.hrsk.cloud</groupId>
  57. <artifactId>egress-gateway-service-adapter</artifactId>
  58. <version>1.0-SNAPSHOT</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.hrsk.cloud</groupId>
  62. <artifactId>egress-gateway-service-client</artifactId>
  63. <version>1.0-SNAPSHOT</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.hrsk.cloud</groupId>
  67. <artifactId>egress-gateway-service-infrastructure</artifactId>
  68. <version>1.0-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.hrsk.cloud</groupId>
  72. <artifactId>egress-gateway-service-domain</artifactId>
  73. <version>1.0-SNAPSHOT</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>com.alibaba.cola</groupId>
  77. <artifactId>cola-components-bom</artifactId>
  78. <version>4.3.2</version>
  79. <type>pom</type>
  80. <scope>import</scope>
  81. </dependency>
  82. <!-- 应用模块依赖-end -->
  83. <dependency>
  84. <groupId>commons-codec</groupId>
  85. <artifactId>commons-codec</artifactId>
  86. <version>${commons-codec.version}</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>com.hrsk.pangu</groupId>
  90. <artifactId>pangu-component-bom</artifactId>
  91. <version>${atlantis-component.version}</version>
  92. <type>pom</type>
  93. <scope>import</scope>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-dependencies</artifactId>
  98. <version>${spring-boot.version}</version>
  99. <type>pom</type>
  100. <scope>import</scope>
  101. </dependency>
  102. <dependency>
  103. <groupId>com.alibaba</groupId>
  104. <artifactId>druid-spring-boot-starter</artifactId>
  105. <version>${druid-starter.version}</version>
  106. </dependency>
  107. <dependency>
  108. <groupId>com.caucho</groupId>
  109. <artifactId>hessian</artifactId>
  110. <version>${hessian.version}</version>
  111. </dependency>
  112. <dependency>
  113. <groupId>com.baomidou</groupId>
  114. <artifactId>mybatis-plus-boot-starter</artifactId>
  115. <version>${mybatis-plus.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.apache.httpcomponents</groupId>
  119. <artifactId>httpclient</artifactId>
  120. <version>${http.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.apache.commons</groupId>
  124. <artifactId>commons-pool2</artifactId>
  125. <version>${common-pools.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>com.alibaba.fastjson2</groupId>
  129. <artifactId>fastjson2</artifactId>
  130. <version>${fast2json.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.google.guava</groupId>
  134. <artifactId>guava</artifactId>
  135. <version>${guva.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-data-redis</artifactId>
  140. <version>${redis.version}</version>
  141. </dependency>
  142. </dependencies>
  143. </dependencyManagement>
  144. <modules> <module>start</module>
  145. <module>egress-gateway-service-app</module>
  146. <module>egress-gateway-service-adapter</module>
  147. <module>egress-gateway-service-client</module>
  148. <module>egress-gateway-service-infrastructure</module>
  149. <module>egress-gateway-service-domain</module>
  150. </modules>
  151. <build>
  152. <pluginManagement>
  153. <plugins>
  154. <plugin>
  155. <artifactId>maven-resources-plugin</artifactId>
  156. <version>3.3.0</version>
  157. </plugin>
  158. <plugin>
  159. <artifactId>maven-compiler-plugin</artifactId>
  160. <version>3.10.1</version>
  161. </plugin>
  162. <plugin>
  163. <artifactId>maven-source-plugin</artifactId>
  164. <version>3.2.1</version>
  165. </plugin>
  166. <plugin>
  167. <artifactId>maven-javadoc-plugin</artifactId>
  168. <version>3.4.0</version>
  169. </plugin>
  170. <plugin>
  171. <artifactId>maven-deploy-plugin</artifactId>
  172. <version>3.0.0</version>
  173. </plugin>
  174. <plugin>
  175. <groupId>org.springframework.boot</groupId>
  176. <artifactId>spring-boot-maven-plugin</artifactId>
  177. <version>${spring-boot.version}</version>
  178. </plugin>
  179. </plugins>
  180. </pluginManagement>
  181. </build>
  182. </project>