pom.xml 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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>farm</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-screen</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>javax.xml.bind</groupId>
  15. <artifactId>jaxb-api</artifactId>
  16. <version>2.3.0</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>com.sun.xml.bind</groupId>
  20. <artifactId>jaxb-impl</artifactId>
  21. <version>2.3.0</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.sun.xml.bind</groupId>
  25. <artifactId>jaxb-core</artifactId>
  26. <version>2.3.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>com.auth0</groupId>
  30. <artifactId>java-jwt</artifactId>
  31. <version>3.3.0</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>io.jsonwebtoken</groupId>
  35. <artifactId>jjwt</artifactId>
  36. <version>0.9.1</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>com.baomidou</groupId>
  40. <artifactId>mybatis-plus-generator</artifactId>
  41. <version>3.2.0</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>com.alibaba</groupId>
  45. <artifactId>fastjson</artifactId>
  46. <version>1.2.28</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>cn.dustlight.captcha</groupId>
  50. <artifactId>redis-store</artifactId>
  51. <version>0.0.6</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>cn.dustlight.captcha</groupId>
  55. <artifactId>captcha-core</artifactId>
  56. <version>0.0.6</version>
  57. </dependency>
  58. </dependencies>
  59. </project>