pom.xml 7.5 KB

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