pom.xml 1.0 KB

1234567891011121314151617181920212223242526272829
  1. <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
  2. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <!--父工程信息-->
  5. <parent>
  6. <groupId>com.shkpr</groupId>
  7. <artifactId>iot-driver</artifactId>
  8. <version>0.0.1-dev</version>
  9. </parent>
  10. <!--项目名-->
  11. <artifactId>iot-driver-mqtt</artifactId>
  12. <!--项目显示名-->
  13. <name>iot-driver-mqtt</name>
  14. <!--项目描述-->
  15. <description>科普睿物联网平台-mqtt驱动模块</description>
  16. <!--打包类型-->
  17. <packaging>jar</packaging>
  18. <!--版本号-->
  19. <version>0.0.1-dev</version>
  20. <!--项目依赖-->
  21. <dependencies>
  22. <!--spring-mqtt-->
  23. <dependency>
  24. <groupId>org.springframework.integration</groupId>
  25. <artifactId>spring-integration-mqtt</artifactId>
  26. </dependency>
  27. </dependencies>
  28. </project>