pom.xml 6.4 KB

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