pom.xml 6.5 KB

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