pom.xml 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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-local-weight</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. <dependency>
  35. <groupId>cn.hutool</groupId>
  36. <artifactId>hutool-all</artifactId>
  37. <version>5.7.16</version>
  38. <scope>compile</scope>
  39. </dependency>
  40. <!-- https://mvnrepository.com/artifact/io.netty/netty-all -->
  41. <dependency>
  42. <groupId>io.netty</groupId>
  43. <artifactId>netty-all</artifactId>
  44. <version>4.1.16.Final</version>
  45. </dependency>
  46. </dependencies>
  47. </project>