pom.xml 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://maven.apache.org/POM/4.0.0"
  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. <parent>
  7. <groupId>vip.xiaonuo</groupId>
  8. <artifactId>snowy-plugin</artifactId>
  9. <version>3.0.0</version>
  10. </parent>
  11. <artifactId>snowy-plugin-coldchain</artifactId>
  12. <properties>
  13. <maven.compiler.source>17</maven.compiler.source>
  14. <maven.compiler.target>17</maven.compiler.target>
  15. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>io.netty</groupId>
  20. <artifactId>netty-all</artifactId>
  21. <version>4.1.45.Final</version>
  22. <scope>system</scope>
  23. <systemPath>${project.basedir}/src/main/resources/lib/NetDeviceSDKP2_V2_2_7.jar</systemPath>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework.boot</groupId>
  27. <artifactId>spring-boot</artifactId>
  28. </dependency>
  29. <dependency>
  30. <groupId>org.projectlombok</groupId>
  31. <artifactId>lombok</artifactId>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-autoconfigure</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>javax.annotation</groupId>
  39. <artifactId>javax.annotation-api</artifactId>
  40. <version>1.3.2</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>org.slf4j</groupId>
  44. <artifactId>slf4j-api</artifactId>
  45. <version>1.7.32</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.slf4j</groupId>
  49. <artifactId>slf4j-simple</artifactId> <!-- 或者根据实际日志实现替换此依赖 -->
  50. <version>1.7.32</version>
  51. </dependency>
  52. <dependency>
  53. <groupId>vip.xiaonuo</groupId>
  54. <artifactId>snowy-common</artifactId>
  55. </dependency>
  56. <dependency>
  57. <groupId>com.github.jfcloud</groupId>
  58. <artifactId>jfcloud-boot-starter-influxdb</artifactId>
  59. <version>K7.0.0</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>cn.dev33</groupId>
  63. <artifactId>sa-token-core</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>vip.xiaonuo</groupId>
  67. <artifactId>snowy-plugin-auth-api</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>vip.xiaonuo</groupId>
  71. <artifactId>snowy-plugin-sys</artifactId>
  72. </dependency>
  73. <dependency>
  74. <groupId>com.github.binarywang</groupId>
  75. <artifactId>weixin-java-mp</artifactId>
  76. <version>4.6.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>vip.xiaonuo</groupId>
  80. <artifactId>snowy-plugin-dev</artifactId>
  81. </dependency>
  82. <!-- https://mvnrepository.com/artifact/org.springframework.integration/spring-integration-mqtt -->
  83. <dependency>
  84. <groupId>org.springframework.integration</groupId>
  85. <artifactId>spring-integration-mqtt</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.eclipse.paho</groupId>
  89. <artifactId>org.eclipse.paho.client.mqttv3</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.itextpdf</groupId>
  93. <artifactId>itext7-core</artifactId>
  94. <version>7.2.0</version>
  95. <type>pom</type>
  96. </dependency>
  97. <dependency>
  98. <groupId>com.itextpdf</groupId>
  99. <artifactId>layout</artifactId>
  100. <version>7.2.6</version>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.springframework.integration</groupId>
  104. <artifactId>spring-integration-mqtt</artifactId>
  105. </dependency>
  106. </dependencies>
  107. </project>