pom.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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>huimv-mobile-video</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-manager</artifactId>
  12. <dependencies>
  13. <!--验证码-->
  14. <dependency>
  15. <groupId>cn.dustlight.captcha</groupId>
  16. <artifactId>captcha-core</artifactId>
  17. <version>0.0.6</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>cn.dustlight.captcha</groupId>
  21. <artifactId>redis-store</artifactId>
  22. <version>0.0.6</version>
  23. </dependency>
  24. <!--jwt-->
  25. <dependency>
  26. <groupId>io.jsonwebtoken</groupId>
  27. <artifactId>jjwt</artifactId>
  28. <version>0.9.1</version>
  29. </dependency>
  30. <!--hutool-->
  31. <dependency>
  32. <groupId>cn.hutool</groupId>
  33. <artifactId>hutool-all</artifactId>
  34. <version>5.5.9</version>
  35. </dependency>
  36. <!--knife4j-->
  37. <dependency>
  38. <groupId>com.github.xiaoymin</groupId>
  39. <artifactId>knife4j-spring-boot-starter</artifactId>
  40. <version>2.0.7</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>io.springfox</groupId>
  44. <artifactId>springfox-swagger-ui</artifactId>
  45. <version>2.10.5</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>io.springfox</groupId>
  49. <artifactId>springfox-swagger2</artifactId>
  50. <version>2.10.5</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.apache.httpcomponents</groupId>
  54. <artifactId>httpcore</artifactId>
  55. <version>4.4.12</version>
  56. </dependency>
  57. </dependencies>
  58. </project>