pom.xml 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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. </dependency>
  31. <!--格式化sql日志-->
  32. <dependency>
  33. <groupId>p6spy</groupId>
  34. <artifactId>p6spy</artifactId>
  35. <version>3.8.6</version>
  36. </dependency>
  37. <!--Spring Boot依赖-->
  38. <!--异维科技dubbo接口包依赖-->
  39. <dependency>
  40. <groupId>com.txz</groupId>
  41. <artifactId>operating-api</artifactId>
  42. <version>1.0.0-SNAPSHOT</version>
  43. </dependency>
  44. <!--test依赖-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <!--异维科技公共包依赖-->
  51. <dependency>
  52. <groupId>com.txz</groupId>
  53. <artifactId>common</artifactId>
  54. <version>1.0.0-SNAPSHOT</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>5.2.4</version>
  60. <scope>compile</scope>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.tencentcloudapi</groupId>
  64. <artifactId>tencentcloud-sdk-java</artifactId>
  65. <version>3.1.158</version>
  66. <exclusions>
  67. <exclusion>
  68. <artifactId>okhttp</artifactId>
  69. <groupId>com.squareup.okhttp</groupId>
  70. </exclusion>
  71. <exclusion>
  72. <artifactId>logging-interceptor</artifactId>
  73. <groupId>com.squareup.okhttp</groupId>
  74. </exclusion>
  75. </exclusions>
  76. </dependency>
  77. <dependency>
  78. <groupId>com.baidu.aip</groupId>
  79. <artifactId>java-sdk</artifactId>
  80. <version>4.15.1</version>
  81. <exclusions>
  82. <exclusion>
  83. <artifactId>guava</artifactId>
  84. <groupId>com.google.guava</groupId>
  85. </exclusion>
  86. </exclusions>
  87. </dependency>
  88. <dependency>
  89. <groupId>io.minio</groupId>
  90. <artifactId>minio</artifactId>
  91. <version>8.2.0</version>
  92. <exclusions>
  93. <exclusion>
  94. <artifactId>okhttp</artifactId>
  95. <groupId>com.squareup.okhttp3</groupId>
  96. </exclusion>
  97. </exclusions>
  98. </dependency>
  99. <dependency>
  100. <groupId>com.squareup.okhttp3</groupId>
  101. <artifactId>okhttp</artifactId>
  102. <version>3.14.9</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.apache.httpcomponents</groupId>
  106. <artifactId>httpclient</artifactId>
  107. <version>4.5.13</version>
  108. </dependency>
  109. </dependencies>
  110. <build>
  111. <plugins>
  112. <plugin>
  113. <groupId>org.springframework.boot</groupId>
  114. <artifactId>spring-boot-maven-plugin</artifactId>
  115. <configuration>
  116. <finalName>operating</finalName>
  117. </configuration>
  118. </plugin>
  119. <plugin>
  120. <artifactId>maven-compiler-plugin</artifactId>
  121. <configuration>
  122. <source>${java.version}</source>
  123. <target>${java.version}</target>
  124. <encoding>UTF-8</encoding>
  125. </configuration>
  126. </plugin>
  127. <plugin>
  128. <groupId>org.apache.maven.plugins</groupId>
  129. <artifactId>maven-surefire-plugin</artifactId>
  130. <version>${maven-surefire-plugin.version}</version>
  131. <configuration>
  132. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  133. </configuration>
  134. </plugin>
  135. </plugins>
  136. </build>
  137. </project>