12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="UTF-8"?>
- <project xmlns="http://maven.apache.org/POM/4.0.0"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <parent>
- <artifactId>qhiot-link-basic-mqtt</artifactId>
- <groupId>com.qhiot</groupId>
- <version>1.1.1</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>qhiot-link-modules</artifactId>
- <packaging>pom</packaging>
- <modules>
- <module>qhiot-log2es</module>
- <module>qhiot-oss-manager</module>
- <module>qhiot-link-api</module>
- <module>common</module>
- <module>common-core</module>
- <module>qhiot-kafka</module>
- <module>qhiot-log</module>
- <module>qhiot-influxdb-core</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>common</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>common-core</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-influxdb-core</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-kafka</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-log</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|