pom.xml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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>thirtpart</groupId>
  29. <artifactId>sdk</artifactId>
  30. <version>1.0</version>
  31. <scope>system</scope>
  32. <systemPath>${project.basedir}/src/main/resources/lib/kuaishou-merchant-open-sdk-release_open_kwaishop_sdk-1.0.2546.jar</systemPath>
  33. </dependency>
  34. <dependency>
  35. <groupId>thirtpart</groupId>
  36. <artifactId>bytedance</artifactId>
  37. <version>1.0</version>
  38. <scope>system</scope>
  39. <systemPath>${project.basedir}/src/main/resources/lib/sdk-java-1.0-SNAPSHOT.jar</systemPath>
  40. </dependency>
  41. <!-- 通用工具-->
  42. <dependency>
  43. <groupId>com.ruixuan</groupId>
  44. <artifactId>ruixuan-common</artifactId>
  45. </dependency>
  46. <!-- system-->
  47. <dependency>
  48. <groupId>com.ruixuan</groupId>
  49. <artifactId>ruixuan-system</artifactId>
  50. </dependency>
  51. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  52. <dependency>
  53. <groupId>io.swagger</groupId>
  54. <artifactId>swagger-models</artifactId>
  55. <version>1.6.2</version>
  56. </dependency>
  57. <!-- excel-->
  58. <dependency>
  59. <groupId>com.alibaba</groupId>
  60. <artifactId>easyexcel</artifactId>
  61. <version>3.0.5</version>
  62. </dependency>
  63. <!-- csv -->
  64. <dependency>
  65. <groupId>de.siegmar</groupId>
  66. <artifactId>fastcsv</artifactId>
  67. <version>1.0.3</version>
  68. </dependency>
  69. <dependency>
  70. <groupId>net.sourceforge.tess4j</groupId>
  71. <artifactId>tess4j</artifactId>
  72. <version>4.1.1</version>
  73. </dependency>
  74. </dependencies>
  75. </project>