pom.xml 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  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. <build>
  59. <finalName>manager</finalName>
  60. <plugins>
  61. <plugin>
  62. <groupId>org.springframework.boot</groupId>
  63. <artifactId>spring-boot-maven-plugin</artifactId>
  64. <executions>
  65. <execution>
  66. <goals>
  67. <goal>repackage</goal>
  68. </goals>
  69. </execution>
  70. </executions>
  71. <configuration>
  72. <fork>true</fork>
  73. </configuration>
  74. </plugin>
  75. </plugins>
  76. </build>
  77. </project>