pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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>com.github.kuaidi100-api</groupId>
  18. <artifactId>sdk</artifactId>
  19. <version>1.0.11</version>
  20. </dependency>
  21. <dependency>
  22. <groupId>thirtpart</groupId>
  23. <artifactId>sdk</artifactId>
  24. <version>1.0</version>
  25. <scope>system</scope>
  26. <systemPath>${project.basedir}/src/main/resources/lib/kuaishou-merchant-open-sdk-release_open_kwaishop_sdk-1.0.2546.jar</systemPath>
  27. </dependency>
  28. <!-- 通用工具-->
  29. <dependency>
  30. <groupId>com.ruixuan</groupId>
  31. <artifactId>ruixuan-common</artifactId>
  32. </dependency>
  33. <!-- system-->
  34. <dependency>
  35. <groupId>com.ruixuan</groupId>
  36. <artifactId>ruixuan-system</artifactId>
  37. </dependency>
  38. <!-- 防止进入swagger页面报类型转换错误,排除3.0.0中的引用,手动增加1.6.2版本 -->
  39. <dependency>
  40. <groupId>io.swagger</groupId>
  41. <artifactId>swagger-models</artifactId>
  42. <version>1.6.2</version>
  43. </dependency>
  44. <!-- excel-->
  45. <dependency>
  46. <groupId>com.alibaba</groupId>
  47. <artifactId>easyexcel</artifactId>
  48. <version>3.0.5</version>
  49. </dependency>
  50. <!-- csv -->
  51. <dependency>
  52. <groupId>de.siegmar</groupId>
  53. <artifactId>fastcsv</artifactId>
  54. <version>1.0.3</version>
  55. </dependency>
  56. </dependencies>
  57. </project>