pom.xml 2.8 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>huimv-farm-datacenter</artifactId>
  7. <groupId>com.huimv</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>huimv-farm-admin</artifactId>
  12. <dependencies>
  13. <dependency>
  14. <groupId>cn.dustlight.captcha</groupId>
  15. <artifactId>redis-store</artifactId>
  16. <version>0.0.6</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.dustlight.captcha</groupId>
  20. <artifactId>captcha-core</artifactId>
  21. <version>0.0.6</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.auth0</groupId>
  25. <artifactId>java-jwt</artifactId>
  26. <version>3.3.0</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>io.jsonwebtoken</groupId>
  30. <artifactId>jjwt</artifactId>
  31. <version>0.9.1</version>
  32. </dependency>
  33. <!--CloseableHttpClient-->
  34. <!-- JPA -->
  35. <dependency>
  36. <groupId>org.springframework.boot</groupId>
  37. <artifactId>spring-boot-starter-data-jpa</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>javax.xml.bind</groupId>
  41. <artifactId>jaxb-api</artifactId>
  42. <version>2.3.0</version>
  43. </dependency>
  44. <!-- <dependency>-->
  45. <!-- <groupId>com.huimv</groupId>-->
  46. <!-- <artifactId>huimv-common</artifactId>-->
  47. <!-- <version>0.0.1</version>-->
  48. <!-- </dependency>-->
  49. <!-- huimv.com -->
  50. <dependency>
  51. <groupId>com.huimv</groupId>
  52. <artifactId>huimv-common</artifactId>
  53. <version>0.0.6-SNAPSHOT</version>
  54. </dependency>
  55. </dependencies>
  56. <build>
  57. <plugins>
  58. <plugin>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-maven-plugin</artifactId>
  61. </plugin>
  62. <plugin>
  63. <groupId>org.apache.maven.plugins</groupId>
  64. <artifactId>maven-resources-plugin</artifactId>
  65. <version>2.6</version>
  66. </plugin>
  67. </plugins>
  68. <!-- <resources>-->
  69. <!-- <resource>-->
  70. <!-- <directory>src/main/java</directory>-->
  71. <!-- <includes>-->
  72. <!-- <include>**/*.xml</include>-->
  73. <!-- </includes>-->
  74. <!-- <filtering>false</filtering>-->
  75. <!-- </resource>-->
  76. <!-- </resources>-->
  77. </build>
  78. </project>