pom.xml 3.0 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-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>com.huimv</groupId>
  15. <artifactId>huimv-common</artifactId>
  16. <version>0.0.1</version>
  17. </dependency>
  18. <dependency>
  19. <groupId>cn.dustlight.captcha</groupId>
  20. <artifactId>redis-store</artifactId>
  21. <version>0.0.6</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>cn.dustlight.captcha</groupId>
  25. <artifactId>captcha-core</artifactId>
  26. <version>0.0.6</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. <!--CloseableHttpClient-->
  39. <!-- JPA -->
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-starter-data-jpa</artifactId>
  43. </dependency>
  44. <dependency>
  45. <groupId>javax.xml.bind</groupId>
  46. <artifactId>jaxb-api</artifactId>
  47. <version>2.3.0</version>
  48. </dependency>
  49. <!-- <dependency>-->
  50. <!-- <groupId>com.huimv</groupId>-->
  51. <!-- <artifactId>huimv-common</artifactId>-->
  52. <!-- <version>0.0.1</version>-->
  53. <!-- </dependency>-->
  54. <!-- huimv.com -->
  55. <dependency>
  56. <groupId>com.huimv</groupId>
  57. <artifactId>huimv-common</artifactId>
  58. <version>0.0.6-SNAPSHOT</version>
  59. </dependency>
  60. </dependencies>
  61. <build>
  62. <plugins>
  63. <plugin>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-maven-plugin</artifactId>
  66. </plugin>
  67. <plugin>
  68. <groupId>org.apache.maven.plugins</groupId>
  69. <artifactId>maven-resources-plugin</artifactId>
  70. <version>2.6</version>
  71. </plugin>
  72. </plugins>
  73. <!-- <resources>-->
  74. <!-- <resource>-->
  75. <!-- <directory>src/main/java</directory>-->
  76. <!-- <includes>-->
  77. <!-- <include>**/*.xml</include>-->
  78. <!-- </includes>-->
  79. <!-- <filtering>false</filtering>-->
  80. <!-- </resource>-->
  81. <!-- </resources>-->
  82. </build>
  83. </project>