pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>IotUpperComputer</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <properties>
  10. <maven.compiler.source>8</maven.compiler.source>
  11. <maven.compiler.target>8</maven.compiler.target>
  12. </properties>
  13. <dependencies>
  14. <dependency>
  15. <groupId>org.slf4j</groupId>
  16. <artifactId>slf4j-simple</artifactId>
  17. <version>2.0.3</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>org.projectlombok</groupId>
  21. <artifactId>lombok</artifactId>
  22. <version>1.18.24</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>com.alibaba</groupId>
  26. <artifactId>fastjson</artifactId>
  27. <version>1.2.80</version>
  28. </dependency>
  29. <dependency>
  30. <groupId>cn.hutool</groupId>
  31. <artifactId>hutool-all</artifactId>
  32. <version>5.8.9</version>
  33. </dependency>
  34. <!--Milo客户端的依赖-->
  35. <dependency>
  36. <groupId>org.eclipse.milo</groupId>
  37. <artifactId>sdk-client</artifactId>
  38. <version>0.6.3</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.eclipse.paho</groupId>
  42. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  43. <version>1.2.5</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.apache.qpid</groupId>
  47. <artifactId>qpid-jms-client</artifactId>
  48. <version>0.61.0</version>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.apache.commons</groupId>
  52. <artifactId>commons-lang3</artifactId>
  53. <version>3.12.0</version>
  54. </dependency>
  55. <dependency>
  56. <groupId>com.intelligt.modbus</groupId>
  57. <artifactId>jlibmodbus</artifactId>
  58. <version>1.2.9.7</version>
  59. </dependency>
  60. </dependencies>
  61. </project>