pom.xml 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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>kpr-iot</artifactId>
  8. <version>0.0.1-dev</version>
  9. </parent>
  10. <!--项目名-->
  11. <artifactId>iot-driver</artifactId>
  12. <!--项目显示名-->
  13. <name>iot-driver</name>
  14. <!--项目描述-->
  15. <description>科普睿物联网平台-驱动模块</description>
  16. <!--打包类型-->
  17. <packaging>pom</packaging>
  18. <!--版本号-->
  19. <version>0.0.1-dev</version>
  20. <!--子模块-->
  21. <modules>
  22. <!--mqtt驱动-->
  23. <module>iot-driver-mqtt</module>
  24. <!--http驱动-->
  25. <module>iot-driver-http</module>
  26. </modules>
  27. <!--项目依赖-->
  28. <dependencies>
  29. <!--公共核心模块-->
  30. <dependency>
  31. <groupId>com.shkpr</groupId>
  32. <artifactId>iot-common-core</artifactId>
  33. <version>${iot.common.version}</version>
  34. </dependency>
  35. <!--公共驱动模块-->
  36. <dependency>
  37. <groupId>com.shkpr</groupId>
  38. <artifactId>iot-common-driver</artifactId>
  39. <version>${iot.common.version}</version>
  40. </dependency>
  41. </dependencies>
  42. </project>