pom.xml 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  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>ruixuan</artifactId>
  7. <groupId>com.ruixuan</groupId>
  8. <version>3.8.2</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>ruixuan-live</artifactId>
  12. <description>
  13. 直播业务模块
  14. </description>
  15. <dependencies>
  16. <dependency>
  17. <groupId>javax.servlet</groupId>
  18. <artifactId>javax.servlet-api</artifactId>
  19. <version>3.0.1</version>
  20. <scope>provided</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>com.github.kuaidi100-api</groupId>
  24. <artifactId>sdk</artifactId>
  25. <version>1.0.11</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.tencentcloudapi</groupId>
  29. <artifactId>tencentcloud-sdk-java</artifactId>
  30. <version>3.1.62</version><!-- 注:这里只是示例版本号,请获取并替换为 最新的版本号 -->
  31. </dependency>
  32. <dependency>
  33. <groupId>thirtpart</groupId>
  34. <artifactId>sdk</artifactId>
  35. <version>1.0</version>
  36. <scope>system</scope>
  37. <systemPath>${project.basedir}/src/main/resources/lib/kuaishou-merchant-open-sdk-release_open_kwaishop_sdk-1.0.7445.jar</systemPath>
  38. </dependency>
  39. <dependency>
  40. <groupId>thirtpart</groupId>
  41. <artifactId>bytedance</artifactId>
  42. <version>1.0</version>
  43. <scope>system</scope>
  44. <systemPath>${project.basedir}/src/main/resources/lib/sdk-java-1.0-SNAPSHOT.jar</systemPath>
  45. </dependency>
  46. <dependency>
  47. <groupId>jave</groupId>
  48. <artifactId>bytedance</artifactId>
  49. <version>1.0</version>
  50. <scope>system</scope>
  51. <systemPath>${project.basedir}/src/main/resources/lib/jave-1.0.jar</systemPath>
  52. </dependency>
  53. <!-- 通用工具-->
  54. <dependency>
  55. <groupId>com.ruixuan</groupId>
  56. <artifactId>ruixuan-common</artifactId>
  57. </dependency>
  58. <!-- system-->
  59. <dependency>
  60. <groupId>com.ruixuan</groupId>
  61. <artifactId>ruixuan-system</artifactId>
  62. </dependency>
  63. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  64. <dependency>
  65. <groupId>io.swagger</groupId>
  66. <artifactId>swagger-models</artifactId>
  67. <version>1.6.2</version>
  68. </dependency>
  69. <!-- excel-->
  70. <dependency>
  71. <groupId>com.alibaba</groupId>
  72. <artifactId>easyexcel</artifactId>
  73. <version>3.0.5</version>
  74. </dependency>
  75. <!-- csv -->
  76. <dependency>
  77. <groupId>de.siegmar</groupId>
  78. <artifactId>fastcsv</artifactId>
  79. <version>1.0.3</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>net.sourceforge.tess4j</groupId>
  83. <artifactId>tess4j</artifactId>
  84. <version>4.1.1</version>
  85. </dependency>
  86. <!--实现对视频文件读取-->
  87. <dependency>
  88. <groupId>org.mp4parser</groupId>
  89. <artifactId>isoparser</artifactId>
  90. <version>1.9.41</version>
  91. </dependency>
  92. <!--实现对ffmpeg的操作-->
  93. <dependency>
  94. <groupId>org.bytedeco</groupId>
  95. <artifactId>ffmpeg</artifactId>
  96. <version>4.2.2-1.5.3</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.bytedeco</groupId>
  100. <artifactId>ffmpeg-platform</artifactId>
  101. <version>4.2.2-1.5.3</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.tencentcloudapi</groupId>
  105. <artifactId>tencentcloud-speech-sdk-java</artifactId>
  106. <version>1.0.38</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>com.monitorjbl</groupId>
  110. <artifactId>xlsx-streamer</artifactId>
  111. <version>2.2.0</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>com.google.guava</groupId>
  115. <artifactId>guava</artifactId>
  116. <version>29.0-jre</version>
  117. </dependency>
  118. </dependencies>
  119. </project>