pom.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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-device</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-cloud-environ</artifactId>
  12. <dependencies>
  13. <!-- https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient -->
  14. <dependency>
  15. <groupId>org.apache.httpcomponents</groupId>
  16. <artifactId>httpclient</artifactId>
  17. <version>4.5.5</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.alibaba</groupId>
  21. <artifactId>fastjson</artifactId>
  22. <version>1.2.28</version>
  23. </dependency>
  24. <!-- JPA -->
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot-starter-data-jpa</artifactId>
  28. </dependency>
  29. <!-- mysql -->
  30. <dependency>
  31. <groupId>mysql</groupId>
  32. <artifactId>mysql-connector-java</artifactId>
  33. </dependency>
  34. <!-- jwt -->
  35. <dependency>
  36. <groupId>com.auth0</groupId>
  37. <artifactId>java-jwt</artifactId>
  38. <version>3.8.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>joda-time</groupId>
  42. <artifactId>joda-time</artifactId>
  43. <version>LATEST</version>
  44. </dependency>
  45. <!--commons-lang-->
  46. <dependency>
  47. <groupId>commons-lang</groupId>
  48. <artifactId>commons-lang</artifactId>
  49. <version>2.6</version>
  50. </dependency>
  51. <dependency>
  52. <groupId>org.apache.commons</groupId>
  53. <artifactId>commons-lang3</artifactId>
  54. </dependency>
  55. <!--hutool-->
  56. <dependency>
  57. <groupId>cn.hutool</groupId>
  58. <artifactId>hutool-all</artifactId>
  59. <version>LATEST</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.apache.directory.studio</groupId>
  63. <artifactId>org.apache.commons.codec</artifactId>
  64. <version>1.8</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>joda-time</groupId>
  68. <artifactId>joda-time</artifactId>
  69. <version>2.9.4</version>
  70. </dependency>
  71. </dependencies>
  72. </project>