pom.xml 2.9 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-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. <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
  35. <dependency>
  36. <groupId>io.netty</groupId>
  37. <artifactId>netty-all</artifactId>
  38. <version>4.1.16.Final</version>
  39. </dependency>
  40. <!-- jwt -->
  41. <dependency>
  42. <groupId>com.auth0</groupId>
  43. <artifactId>java-jwt</artifactId>
  44. <version>3.8.3</version>
  45. </dependency>
  46. <dependency>
  47. <groupId>joda-time</groupId>
  48. <artifactId>joda-time</artifactId>
  49. <version>LATEST</version>
  50. </dependency>
  51. <!--commons-lang-->
  52. <dependency>
  53. <groupId>commons-lang</groupId>
  54. <artifactId>commons-lang</artifactId>
  55. <version>2.6</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.apache.commons</groupId>
  59. <artifactId>commons-lang3</artifactId>
  60. </dependency>
  61. <!--hutool-->
  62. <dependency>
  63. <groupId>cn.hutool</groupId>
  64. <artifactId>hutool-all</artifactId>
  65. <version>LATEST</version>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.apache.directory.studio</groupId>
  69. <artifactId>org.apache.commons.codec</artifactId>
  70. <version>1.8</version>
  71. </dependency>
  72. <dependency>
  73. <groupId>joda-time</groupId>
  74. <artifactId>joda-time</artifactId>
  75. <version>2.9.4</version>
  76. </dependency>
  77. </dependencies>
  78. <!-- <build>-->
  79. <!-- <finalName>environ</finalName>-->
  80. <!-- </build>-->
  81. </project>