pom.xml 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <parent>
  6. <artifactId>service</artifactId>
  7. <groupId>com.atguigu.tingshu</groupId>
  8. <version>1.0</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>service-album</artifactId>
  12. <packaging>jar</packaging>
  13. <version>1.0</version>
  14. <properties>
  15. <skipTests>true</skipTests>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>com.alibaba</groupId>
  20. <artifactId>transmittable-thread-local</artifactId>
  21. <version>2.12.0</version> <!-- 请使用最新版本 -->
  22. </dependency>
  23. <dependency>
  24. <groupId>io.minio</groupId>
  25. <artifactId>minio</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.qcloud</groupId>
  29. <artifactId>vod_api</artifactId>
  30. <!-- 版本冲突,排除 -->
  31. <exclusions>
  32. <exclusion>
  33. <groupId>org.slf4j</groupId>
  34. <artifactId>slf4j-log4j12</artifactId>
  35. </exclusion>
  36. </exclusions>
  37. </dependency>
  38. <!-- 腾讯云播放器签名 -->
  39. <dependency>
  40. <groupId>com.auth0</groupId>
  41. <artifactId>java-jwt</artifactId>
  42. <version>4.3.0</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>com.atguigu.tingshu</groupId>
  46. <artifactId>rabbit-util</artifactId>
  47. <version>1.0</version>
  48. </dependency>
  49. <!-- <dependency>
  50. <groupId>com.tencentcloudapi</groupId>
  51. <artifactId>tencentcloud-sdk-java-vod</artifactId>
  52. <version>3.1.1002</version>
  53. </dependency>-->
  54. <dependency>
  55. <groupId>com.tencentcloudapi</groupId>
  56. <artifactId>tencentcloud-sdk-java</artifactId>
  57. <version>3.1.1014</version>
  58. </dependency>
  59. <dependency>
  60. <groupId>com.tencentcloudapi</groupId>
  61. <artifactId>tencentcloud-sdk-java-tms</artifactId>
  62. <version>3.1.1010</version>
  63. </dependency>
  64. <!-- <dependency>
  65. <groupId>com.jd.platform.hotkey</groupId>
  66. <artifactId>common</artifactId>
  67. <version>0.0.4-SNAPSHOT</version>
  68. <exclusions>
  69. <exclusion>
  70. <groupId>cn.hutool</groupId>
  71. <artifactId>hutool-all</artifactId>
  72. </exclusion>
  73. </exclusions>
  74. </dependency>-->
  75. <dependency>
  76. <groupId>com.jd.platform.hotkey</groupId>
  77. <artifactId>hotkey-client</artifactId>
  78. <version>0.0.4-SNAPSHOT</version>
  79. <exclusions>
  80. <exclusion>
  81. <groupId>cn.hutool</groupId>
  82. <artifactId>hutool-all</artifactId>
  83. </exclusion>
  84. </exclusions>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.google.guava</groupId>
  88. <artifactId>guava</artifactId>
  89. <version>28.2-jre</version>
  90. </dependency>
  91. </dependencies>
  92. <build>
  93. <finalName>${project.artifactId}</finalName>
  94. <plugins>
  95. <plugin>
  96. <groupId>org.springframework.boot</groupId>
  97. <artifactId>spring-boot-maven-plugin</artifactId>
  98. </plugin>
  99. </plugins>
  100. </build>
  101. </project>