pom.xml 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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. <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. <bcprov.version>1.56</bcprov.version>
  30. </properties>
  31. <dependencies>
  32. <dependency>
  33. <groupId>org.projectlombok</groupId>
  34. <artifactId>lombok</artifactId>
  35. <scope>provided</scope>
  36. </dependency>
  37. <dependency>
  38. <groupId>junit</groupId>
  39. <artifactId>junit</artifactId>
  40. <scope>test</scope>
  41. </dependency>
  42. </dependencies>
  43. <dependencyManagement>
  44. <dependencies>
  45. <!-- 应用模块依赖-start -->
  46. <dependency>
  47. <groupId>com.hrsk.cloud</groupId>
  48. <artifactId>start</artifactId>
  49. <version>1.0</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>com.hrsk.cloud</groupId>
  53. <artifactId>egress-gateway-service-app</artifactId>
  54. <version>1.0</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.hrsk.cloud</groupId>
  58. <artifactId>egress-gateway-service-adapter</artifactId>
  59. <version>1.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.hrsk.cloud</groupId>
  63. <artifactId>egress-gateway-service-client</artifactId>
  64. <version>1.0</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.hrsk.cloud</groupId>
  68. <artifactId>egress-gateway-service-infrastructure</artifactId>
  69. <version>1.0</version>
  70. </dependency>
  71. <dependency>
  72. <groupId>com.hrsk.cloud</groupId>
  73. <artifactId>egress-gateway-service-domain</artifactId>
  74. <version>1.0</version>
  75. </dependency>
  76. <dependency>
  77. <groupId>com.alibaba.cola</groupId>
  78. <artifactId>cola-components-bom</artifactId>
  79. <version>4.3.2</version>
  80. <type>pom</type>
  81. <scope>import</scope>
  82. </dependency>
  83. <!-- 应用模块依赖-end -->
  84. <dependency>
  85. <groupId>commons-codec</groupId>
  86. <artifactId>commons-codec</artifactId>
  87. <version>${commons-codec.version}</version>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.hrsk.pangu</groupId>
  91. <artifactId>pangu-component-bom</artifactId>
  92. <version>${atlantis-component.version}</version>
  93. <type>pom</type>
  94. <scope>import</scope>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.springframework.boot</groupId>
  98. <artifactId>spring-boot-dependencies</artifactId>
  99. <version>${spring-boot.version}</version>
  100. <type>pom</type>
  101. <scope>import</scope>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.alibaba</groupId>
  105. <artifactId>druid-spring-boot-starter</artifactId>
  106. <version>${druid-starter.version}</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.caucho</groupId>
  110. <artifactId>hessian</artifactId>
  111. <version>${hessian.version}</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.baomidou</groupId>
  115. <artifactId>mybatis-plus-boot-starter</artifactId>
  116. <version>${mybatis-plus.version}</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>org.apache.httpcomponents</groupId>
  120. <artifactId>httpclient</artifactId>
  121. <version>${http.version}</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>org.apache.commons</groupId>
  125. <artifactId>commons-pool2</artifactId>
  126. <version>${common-pools.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>com.alibaba.fastjson2</groupId>
  130. <artifactId>fastjson2</artifactId>
  131. <version>${fast2json.version}</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.google.guava</groupId>
  135. <artifactId>guava</artifactId>
  136. <version>${guva.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.springframework.boot</groupId>
  140. <artifactId>spring-boot-starter-data-redis</artifactId>
  141. <version>${redis.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.bouncycastle</groupId>
  145. <artifactId>bcprov-jdk15on</artifactId>
  146. <version>${bcprov.version}</version>
  147. </dependency>
  148. </dependencies>
  149. </dependencyManagement>
  150. <modules> <module>start</module>
  151. <module>egress-gateway-service-app</module>
  152. <module>egress-gateway-service-adapter</module>
  153. <module>egress-gateway-service-client</module>
  154. <module>egress-gateway-service-infrastructure</module>
  155. <module>egress-gateway-service-domain</module>
  156. </modules>
  157. <build>
  158. <pluginManagement>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-maven-plugin</artifactId>
  163. <version>${spring-boot.version}</version>
  164. <configuration>
  165. <mainClass>com.hrsk.cloud.eg.Application</mainClass>
  166. </configuration>
  167. <executions>
  168. <execution>
  169. <goals>
  170. <goal>repackage</goal>
  171. </goals>
  172. </execution>
  173. </executions>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-jar-plugin</artifactId>
  178. <version>3.3.0</version>
  179. <configuration>
  180. <archive>
  181. <manifest>
  182. <mainClass>com.hrsk.cloud.eg.Application</mainClass>
  183. </manifest>
  184. </archive>
  185. </configuration>
  186. <executions>
  187. <execution>
  188. <phase>package</phase>
  189. <goals>
  190. </goals>
  191. </execution>
  192. </executions>
  193. </plugin>
  194. <plugin>
  195. <artifactId>maven-resources-plugin</artifactId>
  196. <version>3.3.0</version>
  197. </plugin>
  198. <plugin>
  199. <artifactId>maven-compiler-plugin</artifactId>
  200. <version>3.10.1</version>
  201. </plugin>
  202. <plugin>
  203. <artifactId>maven-source-plugin</artifactId>
  204. <version>3.2.1</version>
  205. </plugin>
  206. <plugin>
  207. <artifactId>maven-javadoc-plugin</artifactId>
  208. <version>3.4.0</version>
  209. </plugin>
  210. <plugin>
  211. <artifactId>maven-deploy-plugin</artifactId>
  212. <version>3.0.0</version>
  213. </plugin>
  214. </plugins>
  215. </pluginManagement>
  216. </build>
  217. <!-- 本地nexus私有库-->
  218. <distributionManagement>
  219. <snapshotRepository>
  220. <id>rdc-snapshots</id>
  221. <name>snapshots</name>
  222. <url>http://192.168.1.169:8000/repository/maven-snapshots/</url>
  223. </snapshotRepository>
  224. <repository>
  225. <id>rdc-releases</id>
  226. <name>release</name>
  227. <url>http://192.168.1.169:8000/repository/maven-releases/</url>
  228. </repository>
  229. </distributionManagement>
  230. </project>