pom.xml 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <parent>
  5. <artifactId>mall</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>mall-service</artifactId>
  11. <packaging>jar</packaging>
  12. <version>1.0.0-SNAPSHOT</version>
  13. <properties>
  14. <java.version>1.8</java.version>
  15. </properties>
  16. <!-- Inherit defaults from Spring Boot -->
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter-data-redis</artifactId>
  21. </dependency>
  22. <dependency>
  23. <groupId>redis.clients</groupId>
  24. <artifactId>jedis</artifactId>
  25. <version>3.3.0</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.apache.rocketmq</groupId>
  29. <artifactId>rocketmq-spring-boot-starter</artifactId>
  30. <version>2.2.2</version>
  31. </dependency>
  32. <!-- xxl-job-core -->
  33. <dependency>
  34. <groupId>com.xuxueli</groupId>
  35. <artifactId>xxl-job-core</artifactId>
  36. <version>2.3.1</version>
  37. </dependency>
  38. <!--格式化sql日志-->
  39. <dependency>
  40. <groupId>p6spy</groupId>
  41. <artifactId>p6spy</artifactId>
  42. <version>3.8.6</version>
  43. </dependency>
  44. <!--Spring Boot依赖-->
  45. <!--异维科技dubbo接口包依赖-->
  46. <dependency>
  47. <groupId>com.txz</groupId>
  48. <artifactId>mall-api</artifactId>
  49. <version>1.0.0-SNAPSHOT</version>
  50. </dependency>
  51. <!--test依赖-->
  52. <dependency>
  53. <groupId>org.springframework.boot</groupId>
  54. <artifactId>spring-boot-starter-test</artifactId>
  55. <scope>test</scope>
  56. </dependency>
  57. <!--异维科技公共包依赖-->
  58. <dependency>
  59. <groupId>com.txz</groupId>
  60. <artifactId>common</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-all</artifactId>
  65. <version>5.2.4</version>
  66. <scope>compile</scope>
  67. </dependency>
  68. <dependency>
  69. <groupId>io.jsonwebtoken</groupId>
  70. <artifactId>jjwt</artifactId>
  71. <version>0.9.1</version>
  72. </dependency>
  73. <!-- <dependency> -->
  74. <!-- <groupId>com.tencentcloudapi</groupId> -->
  75. <!-- <artifactId>tencentcloud-sdk-java</artifactId> -->
  76. <!-- &lt;!&ndash; 请到 https://search.maven.org/search?q=tencentcloud-sdk-java 查询最新版本 &ndash;&gt; -->
  77. <!-- <version>3.1.158</version> -->
  78. <!-- </dependency> -->
  79. <dependency>
  80. <groupId>com.baidu.aip</groupId>
  81. <artifactId>java-sdk</artifactId>
  82. <version>4.15.1</version>
  83. <exclusions>
  84. <exclusion>
  85. <artifactId>guava</artifactId>
  86. <groupId>com.google.guava</groupId>
  87. </exclusion>
  88. </exclusions>
  89. </dependency>
  90. <dependency>
  91. <groupId>com.txz</groupId>
  92. <artifactId>operating-api</artifactId>
  93. <version>1.0.0-SNAPSHOT</version>
  94. </dependency>
  95. <dependency>
  96. <groupId>com.txz</groupId>
  97. <artifactId>cif-api</artifactId>
  98. <version>1.0.0-SNAPSHOT</version>
  99. </dependency>
  100. <dependency>
  101. <groupId>org.springframework.cloud</groupId>
  102. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.springframework.cloud</groupId>
  106. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.dubbo.extensions</groupId>
  110. <artifactId>dubbo-serialization-kryo</artifactId>
  111. <version>1.0.1</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springdoc</groupId>
  115. <artifactId>springdoc-openapi-ui</artifactId>
  116. <version>1.6.15</version>
  117. </dependency>
  118. <!-- <dependency>-->
  119. <!-- <groupId>io.springfox</groupId>-->
  120. <!-- <artifactId>springfox-boot-starter</artifactId>-->
  121. <!-- <version>3.0.0</version>-->
  122. <!-- <exclusions>-->
  123. <!-- <exclusion>-->
  124. <!-- <groupId>org.springframework.cloud</groupId>-->
  125. <!-- <artifactId>spring-cloud-context</artifactId>-->
  126. <!-- </exclusion>-->
  127. <!-- </exclusions>-->
  128. <!-- </dependency>-->
  129. <dependency>
  130. <groupId>com.alibaba.cloud</groupId>
  131. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  132. <version>2.2.9.RELEASE</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>com.alibaba.cloud</groupId>
  136. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  137. <version>2.2.9.RELEASE</version>
  138. </dependency>
  139. <!-- <dependency> -->
  140. <!-- <groupId>com.alibaba.nacos</groupId> -->
  141. <!-- <artifactId>nacos-client</artifactId> -->
  142. <!-- <version>2.2.2</version> -->
  143. <!-- </dependency> -->
  144. <!-- <dependency> -->
  145. <!-- <groupId>org.springframework.boot</groupId> -->
  146. <!-- <artifactId>spring-boot-starter-web</artifactId> -->
  147. <!-- &lt;!&ndash; 移除tomcat容器&ndash;&gt; -->
  148. <!-- <exclusions> -->
  149. <!-- <exclusion> -->
  150. <!-- <groupId>org.springframework.boot</groupId> -->
  151. <!-- <artifactId>spring-boot-starter-tomcat</artifactId> -->
  152. <!-- </exclusion> -->
  153. <!-- </exclusions> -->
  154. <!-- </dependency> -->
  155. <!-- &lt;!&ndash; 替换undertow容器 &ndash;&gt; -->
  156. <!-- <dependency> -->
  157. <!-- <groupId>org.springframework.boot</groupId> -->
  158. <!-- <artifactId>spring-boot-starter-undertow</artifactId> -->
  159. <!-- </dependency> -->
  160. <dependency>
  161. <groupId>junit</groupId>
  162. <artifactId>junit</artifactId>
  163. <version>4.13.2</version>
  164. <scope>test</scope>
  165. </dependency>
  166. <dependency>
  167. <groupId>org.redisson</groupId>
  168. <artifactId>redisson</artifactId>
  169. <version>3.16.6</version>
  170. </dependency>
  171. <dependency>
  172. <groupId>io.github.engagelab-mt</groupId>
  173. <artifactId>engagelab-sdk-java</artifactId>
  174. <version>0.0.15</version>
  175. </dependency>
  176. </dependencies>
  177. <build>
  178. <plugins>
  179. <plugin>
  180. <groupId>org.springframework.boot</groupId>
  181. <artifactId>spring-boot-maven-plugin</artifactId>
  182. <configuration>
  183. <finalName>mall</finalName>
  184. </configuration>
  185. </plugin>
  186. <plugin>
  187. <artifactId>maven-compiler-plugin</artifactId>
  188. <configuration>
  189. <source>${java.version}</source>
  190. <target>${java.version}</target>
  191. <encoding>UTF-8</encoding>
  192. </configuration>
  193. </plugin>
  194. <plugin>
  195. <groupId>org.apache.maven.plugins</groupId>
  196. <artifactId>maven-surefire-plugin</artifactId>
  197. <version>${maven-surefire-plugin.version}</version>
  198. <configuration>
  199. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  200. </configuration>
  201. </plugin>
  202. </plugins>
  203. </build>
  204. </project>