pom.xml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. <parent>
  6. <artifactId>qhiot-link-basic-mqtt</artifactId>
  7. <groupId>com.qhiot</groupId>
  8. <version>1.1.1</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>qhiot-link-transport-server</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>qhiot-transport-db</module>
  15. <module>qhiot-transport-server</module>
  16. <module>qhiot-transport-mqtt-core</module>
  17. <module>qhiot-transport-mqtt-message</module>
  18. <module>qhiot-transport-stream-message</module>
  19. </modules>
  20. <dependencyManagement>
  21. <dependencies>
  22. <dependency>
  23. <groupId>com.qhiot</groupId>
  24. <artifactId>qhiot-transport-api</artifactId>
  25. <version>${qhiot.version}</version>
  26. </dependency>
  27. <dependency>
  28. <groupId>com.qhiot</groupId>
  29. <artifactId>qhiot-transport-db</artifactId>
  30. <version>${qhiot.version}</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.qhiot</groupId>
  34. <artifactId>qhiot-transport-mqtt-core</artifactId>
  35. <version>${qhiot.version}</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>com.qhiot</groupId>
  39. <artifactId>qhiot-transport-mqtt-message</artifactId>
  40. <version>${qhiot.version}</version>
  41. </dependency>
  42. <dependency>
  43. <groupId>com.qhiot</groupId>
  44. <artifactId>qhiot-transport-stream-message</artifactId>
  45. <version>${qhiot.version}</version>
  46. </dependency>
  47. </dependencies>
  48. </dependencyManagement>
  49. </project>