pom.xml 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211
  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>operating</artifactId>
  6. <groupId>com.txz</groupId>
  7. <version>1.0.0-SNAPSHOT</version>
  8. </parent>
  9. <modelVersion>4.0.0</modelVersion>
  10. <artifactId>operating-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. <!-- xxl-job-core -->
  28. <dependency>
  29. <groupId>com.xuxueli</groupId>
  30. <artifactId>xxl-job-core</artifactId>
  31. <version>2.3.1</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.apache.rocketmq</groupId>
  35. <artifactId>rocketmq-spring-boot-starter</artifactId>
  36. <version>2.2.2</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>operating-api</artifactId>
  49. <version>1.0.0-SNAPSHOT</version>
  50. </dependency>
  51. <!--异维科技公共包依赖-->
  52. <dependency>
  53. <groupId>com.txz</groupId>
  54. <artifactId>common</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.dubbo.extensions</groupId>
  58. <artifactId>dubbo-serialization-kryo</artifactId>
  59. <version>1.0.1</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.hutool</groupId>
  63. <artifactId>hutool-all</artifactId>
  64. <version>5.2.4</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.tencentcloudapi</groupId>
  68. <artifactId>tencentcloud-sdk-java</artifactId>
  69. <version>3.1.158</version>
  70. <exclusions>
  71. <exclusion>
  72. <artifactId>okhttp</artifactId>
  73. <groupId>com.squareup.okhttp</groupId>
  74. </exclusion>
  75. <exclusion>
  76. <artifactId>logging-interceptor</artifactId>
  77. <groupId>com.squareup.okhttp</groupId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.baidu.aip</groupId>
  83. <artifactId>java-sdk</artifactId>
  84. <version>4.15.1</version>
  85. <exclusions>
  86. <exclusion>
  87. <artifactId>guava</artifactId>
  88. <groupId>com.google.guava</groupId>
  89. </exclusion>
  90. </exclusions>
  91. </dependency>
  92. <dependency>
  93. <groupId>io.minio</groupId>
  94. <artifactId>minio</artifactId>
  95. <version>8.2.0</version>
  96. <exclusions>
  97. <exclusion>
  98. <artifactId>okhttp</artifactId>
  99. <groupId>com.squareup.okhttp3</groupId>
  100. </exclusion>
  101. </exclusions>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.squareup.okhttp3</groupId>
  105. <artifactId>okhttp</artifactId>
  106. <version>3.14.9</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.apache.httpcomponents</groupId>
  110. <artifactId>httpclient</artifactId>
  111. <version>4.5.13</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>org.springframework.cloud</groupId>
  115. <artifactId>spring-cloud-starter-loadbalancer</artifactId>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework.cloud</groupId>
  119. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  120. </dependency>
  121. <!-- <dependency> -->
  122. <!-- <groupId>org.apache.dubbo</groupId> -->
  123. <!-- <artifactId>dubbo-serialization-kryo</artifactId> -->
  124. <!-- <version>2.7.9</version> -->
  125. <!-- </dependency> -->
  126. <dependency>
  127. <groupId>org.springdoc</groupId>
  128. <artifactId>springdoc-openapi-ui</artifactId>
  129. <version>1.6.14</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>junit</groupId>
  133. <artifactId>junit</artifactId>
  134. <version>4.13.2</version>
  135. <scope>test</scope>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework.boot</groupId>
  139. <artifactId>spring-boot-starter-test</artifactId>
  140. <scope>test</scope>
  141. </dependency>
  142. <dependency>
  143. <groupId>com.alibaba.cloud</groupId>
  144. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  145. <version>2.2.9.RELEASE</version>
  146. </dependency>
  147. <dependency>
  148. <groupId>com.alibaba.cloud</groupId>
  149. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  150. <version>2.2.9.RELEASE</version>
  151. </dependency>
  152. <!-- <dependency> -->
  153. <!-- <groupId>com.alibaba.nacos</groupId> -->
  154. <!-- <artifactId>nacos-client</artifactId> -->
  155. <!-- <version>2.2.2</version> -->
  156. <!-- </dependency> -->
  157. </dependencies>
  158. <build>
  159. <plugins>
  160. <plugin>
  161. <groupId>org.springframework.boot</groupId>
  162. <artifactId>spring-boot-maven-plugin</artifactId>
  163. <configuration>
  164. <finalName>operating</finalName>
  165. </configuration>
  166. </plugin>
  167. <plugin>
  168. <artifactId>maven-compiler-plugin</artifactId>
  169. <configuration>
  170. <source>${java.version}</source>
  171. <target>${java.version}</target>
  172. <encoding>UTF-8</encoding>
  173. </configuration>
  174. </plugin>
  175. <plugin>
  176. <groupId>org.apache.maven.plugins</groupId>
  177. <artifactId>maven-surefire-plugin</artifactId>
  178. <version>${maven-surefire-plugin.version}</version>
  179. <configuration>
  180. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  181. </configuration>
  182. </plugin>
  183. </plugins>
  184. </build>
  185. </project>