pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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-goldpig</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-goldpig-admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>com.auth0</groupId>
  15. <artifactId>java-jwt</artifactId>
  16. <version>3.3.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.belerweb</groupId>
  20. <artifactId>pinyin4j</artifactId>
  21. <version>2.5.1</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>io.jsonwebtoken</groupId>
  25. <artifactId>jjwt</artifactId>
  26. <version>0.9.1</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>net.sf.json-lib</groupId>
  30. <artifactId>json-lib</artifactId>
  31. <version>2.2.3</version>
  32. <classifier>jdk15</classifier>
  33. </dependency>
  34. <dependency>
  35. <groupId>com.alibaba</groupId>
  36. <artifactId>fastjson</artifactId>
  37. <version>1.2.28</version>
  38. </dependency>
  39. <dependency>
  40. <groupId>cn.dustlight.captcha</groupId>
  41. <artifactId>redis-store</artifactId>
  42. <version>0.0.6</version>
  43. </dependency>
  44. <dependency>
  45. <groupId>cn.dustlight.captcha</groupId>
  46. <artifactId>captcha-core</artifactId>
  47. <version>0.0.6</version>
  48. </dependency>
  49. <dependency>
  50. <groupId>cn.hutool</groupId>
  51. <artifactId>hutool-all</artifactId>
  52. <version>5.7.11</version>
  53. </dependency>
  54. </dependencies>
  55. </project>