pom.xml 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. </dependencies>
  45. <build>
  46. <plugins>
  47. <plugin>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-maven-plugin</artifactId>
  50. </plugin>
  51. <plugin>
  52. <groupId>org.apache.maven.plugins</groupId>
  53. <artifactId>maven-resources-plugin</artifactId>
  54. <version>2.6</version>
  55. </plugin>
  56. </plugins>
  57. <resources>
  58. <resource>
  59. <directory>src/main/java</directory>
  60. <includes>
  61. <include>**/*.xml</include>
  62. </includes>
  63. <filtering>false</filtering>
  64. </resource>
  65. </resources>
  66. </build>
  67. </project>