pom.xml 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175
  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. </properties>
  25. <dependencies>
  26. <dependency>
  27. <groupId>org.projectlombok</groupId>
  28. <artifactId>lombok</artifactId>
  29. <scope>provided</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>junit</groupId>
  33. <artifactId>junit</artifactId>
  34. <scope>test</scope>
  35. </dependency>
  36. </dependencies>
  37. <dependencyManagement>
  38. <dependencies>
  39. <!-- 应用模块依赖-start -->
  40. <dependency>
  41. <groupId>com.hrsk.cloud</groupId>
  42. <artifactId>start</artifactId>
  43. <version>1.0-SNAPSHOT</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.hrsk.cloud</groupId>
  47. <artifactId>egress-gateway-service-app</artifactId>
  48. <version>1.0-SNAPSHOT</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>com.hrsk.cloud</groupId>
  52. <artifactId>egress-gateway-service-adapter</artifactId>
  53. <version>1.0-SNAPSHOT</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.hrsk.cloud</groupId>
  57. <artifactId>egress-gateway-service-client</artifactId>
  58. <version>1.0-SNAPSHOT</version>
  59. </dependency>
  60. <dependency>
  61. <groupId>com.hrsk.cloud</groupId>
  62. <artifactId>egress-gateway-service-infrastructure</artifactId>
  63. <version>1.0-SNAPSHOT</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>com.hrsk.cloud</groupId>
  67. <artifactId>egress-gateway-service-domain</artifactId>
  68. <version>1.0-SNAPSHOT</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>com.alibaba.cola</groupId>
  72. <artifactId>cola-components-bom</artifactId>
  73. <version>4.3.2</version>
  74. <type>pom</type>
  75. <scope>import</scope>
  76. </dependency>
  77. <!-- 应用模块依赖-end -->
  78. <dependency>
  79. <groupId>org.apache.commons</groupId>
  80. <artifactId>commons-lang3</artifactId>
  81. <version>${commons-lang3.version}</version>
  82. </dependency>
  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. </dependencies>
  128. </dependencyManagement>
  129. <modules> <module>start</module>
  130. <module>egress-gateway-service-app</module>
  131. <module>egress-gateway-service-adapter</module>
  132. <module>egress-gateway-service-client</module>
  133. <module>egress-gateway-service-infrastructure</module>
  134. <module>egress-gateway-service-domain</module>
  135. </modules>
  136. <build>
  137. <pluginManagement>
  138. <plugins>
  139. <plugin>
  140. <artifactId>maven-resources-plugin</artifactId>
  141. <version>3.3.0</version>
  142. </plugin>
  143. <plugin>
  144. <artifactId>maven-compiler-plugin</artifactId>
  145. <version>3.10.1</version>
  146. </plugin>
  147. <plugin>
  148. <artifactId>maven-source-plugin</artifactId>
  149. <version>3.2.1</version>
  150. </plugin>
  151. <plugin>
  152. <artifactId>maven-javadoc-plugin</artifactId>
  153. <version>3.4.0</version>
  154. </plugin>
  155. <plugin>
  156. <artifactId>maven-deploy-plugin</artifactId>
  157. <version>3.0.0</version>
  158. </plugin>
  159. <plugin>
  160. <groupId>org.springframework.boot</groupId>
  161. <artifactId>spring-boot-maven-plugin</artifactId>
  162. <version>${spring-boot.version}</version>
  163. </plugin>
  164. </plugins>
  165. </pluginManagement>
  166. </build>
  167. </project>