pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. </properties>
  24. <dependencies>
  25. <dependency>
  26. <groupId>org.projectlombok</groupId>
  27. <artifactId>lombok</artifactId>
  28. <scope>provided</scope>
  29. </dependency>
  30. <dependency>
  31. <groupId>junit</groupId>
  32. <artifactId>junit</artifactId>
  33. <scope>test</scope>
  34. </dependency>
  35. </dependencies>
  36. <dependencyManagement>
  37. <dependencies>
  38. <!-- 应用模块依赖-start -->
  39. <dependency>
  40. <groupId>com.hrsk.cloud</groupId>
  41. <artifactId>start</artifactId>
  42. <version>1.0-SNAPSHOT</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.hrsk.cloud</groupId>
  46. <artifactId>egress-gateway-service-app</artifactId>
  47. <version>1.0-SNAPSHOT</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>com.hrsk.cloud</groupId>
  51. <artifactId>egress-gateway-service-adapter</artifactId>
  52. <version>1.0-SNAPSHOT</version>
  53. </dependency>
  54. <dependency>
  55. <groupId>com.hrsk.cloud</groupId>
  56. <artifactId>egress-gateway-service-client</artifactId>
  57. <version>1.0-SNAPSHOT</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.hrsk.cloud</groupId>
  61. <artifactId>egress-gateway-service-infrastructure</artifactId>
  62. <version>1.0-SNAPSHOT</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.hrsk.cloud</groupId>
  66. <artifactId>egress-gateway-service-domain</artifactId>
  67. <version>1.0-SNAPSHOT</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>org.apache.commons</groupId>
  79. <artifactId>commons-lang3</artifactId>
  80. <version>${commons-lang3.version}</version>
  81. </dependency>
  82. <dependency>
  83. <groupId>commons-codec</groupId>
  84. <artifactId>commons-codec</artifactId>
  85. <version>${commons-codec.version}</version>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.hrsk.pangu</groupId>
  89. <artifactId>pangu-component-bom</artifactId>
  90. <version>${atlantis-component.version}</version>
  91. <type>pom</type>
  92. <scope>import</scope>
  93. </dependency>
  94. <dependency>
  95. <groupId>org.springframework.boot</groupId>
  96. <artifactId>spring-boot-dependencies</artifactId>
  97. <version>${spring-boot.version}</version>
  98. <type>pom</type>
  99. <scope>import</scope>
  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.caucho</groupId>
  108. <artifactId>hessian</artifactId>
  109. <version>${hessian.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>org.apache.httpcomponents</groupId>
  118. <artifactId>httpclient</artifactId>
  119. <version>${http.version}</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>org.apache.commons</groupId>
  123. <artifactId>commons-pool2</artifactId>
  124. <version>${common-pools.version}</version>
  125. </dependency>
  126. </dependencies>
  127. </dependencyManagement>
  128. <modules> <module>start</module>
  129. <module>egress-gateway-service-app</module>
  130. <module>egress-gateway-service-adapter</module>
  131. <module>egress-gateway-service-client</module>
  132. <module>egress-gateway-service-infrastructure</module>
  133. <module>egress-gateway-service-domain</module>
  134. </modules>
  135. <build>
  136. <pluginManagement>
  137. <plugins>
  138. <plugin>
  139. <artifactId>maven-resources-plugin</artifactId>
  140. <version>3.3.0</version>
  141. </plugin>
  142. <plugin>
  143. <artifactId>maven-compiler-plugin</artifactId>
  144. <version>3.10.1</version>
  145. </plugin>
  146. <plugin>
  147. <artifactId>maven-source-plugin</artifactId>
  148. <version>3.2.1</version>
  149. </plugin>
  150. <plugin>
  151. <artifactId>maven-javadoc-plugin</artifactId>
  152. <version>3.4.0</version>
  153. </plugin>
  154. <plugin>
  155. <artifactId>maven-deploy-plugin</artifactId>
  156. <version>3.0.0</version>
  157. </plugin>
  158. <plugin>
  159. <groupId>org.springframework.boot</groupId>
  160. <artifactId>spring-boot-maven-plugin</artifactId>
  161. <version>${spring-boot.version}</version>
  162. </plugin>
  163. </plugins>
  164. </pluginManagement>
  165. </build>
  166. </project>