pom.xml 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <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. </dependencies>
  57. </project>