pom.xml 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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-modules</artifactId>
  12. <packaging>pom</packaging>
  13. <modules>
  14. <module>qhiot-log2es</module>
  15. <module>qhiot-oss-manager</module>
  16. <module>qhiot-link-api</module>
  17. <module>common</module>
  18. <module>common-core</module>
  19. <module>qhiot-kafka</module>
  20. <module>qhiot-log</module>
  21. <module>qhiot-influxdb-core</module>
  22. </modules>
  23. <dependencyManagement>
  24. <dependencies>
  25. <dependency>
  26. <groupId>com.qhiot</groupId>
  27. <artifactId>common</artifactId>
  28. <version>${qhiot.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>com.qhiot</groupId>
  32. <artifactId>common-core</artifactId>
  33. <version>${qhiot.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.qhiot</groupId>
  37. <artifactId>qhiot-influxdb-core</artifactId>
  38. <version>${qhiot.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>com.qhiot</groupId>
  42. <artifactId>qhiot-kafka</artifactId>
  43. <version>${qhiot.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.qhiot</groupId>
  47. <artifactId>qhiot-log</artifactId>
  48. <version>${qhiot.version}</version>
  49. </dependency>
  50. </dependencies>
  51. </dependencyManagement>
  52. </project>