pom.xml 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. </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>mall-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. <!-- 请到 https://search.maven.org/search?q=tencentcloud-sdk-java 查询最新版本 -->
  66. <version>3.1.158</version>
  67. </dependency>
  68. <dependency>
  69. <groupId>com.baidu.aip</groupId>
  70. <artifactId>java-sdk</artifactId>
  71. <version>4.15.1</version>
  72. <exclusions>
  73. <exclusion>
  74. <artifactId>guava</artifactId>
  75. <groupId>com.google.guava</groupId>
  76. </exclusion>
  77. </exclusions>
  78. </dependency>
  79. <dependency>
  80. <groupId>com.txz</groupId>
  81. <artifactId>operating-api</artifactId>
  82. <version>1.0.0-SNAPSHOT</version>
  83. </dependency>
  84. <dependency>
  85. <groupId>com.txz</groupId>
  86. <artifactId>cif-api</artifactId>
  87. <version>1.0.0-SNAPSHOT</version>
  88. </dependency>
  89. </dependencies>
  90. <build>
  91. <plugins>
  92. <plugin>
  93. <groupId>org.springframework.boot</groupId>
  94. <artifactId>spring-boot-maven-plugin</artifactId>
  95. <configuration>
  96. <finalName>mall</finalName>
  97. </configuration>
  98. </plugin>
  99. <plugin>
  100. <artifactId>maven-compiler-plugin</artifactId>
  101. <configuration>
  102. <source>${java.version}</source>
  103. <target>${java.version}</target>
  104. <encoding>UTF-8</encoding>
  105. </configuration>
  106. </plugin>
  107. <plugin>
  108. <groupId>org.apache.maven.plugins</groupId>
  109. <artifactId>maven-surefire-plugin</artifactId>
  110. <version>${maven-surefire-plugin.version}</version>
  111. <configuration>
  112. <skipTests>true</skipTests> <!--默认关掉单元测试 -->
  113. </configuration>
  114. </plugin>
  115. </plugins>
  116. </build>
  117. </project>