1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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>
- <packaging>pom</packaging>
- <version>1.1.1</version>
- <artifactId>qhiot-link-data-server</artifactId>
- <modules>
- <module>qhiot-link-server</module>
- <module>qhiot-link-data</module>
- <module>qhiot-link-start</module>
- </modules>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-link-data</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- <dependency>
- <groupId>com.qhiot</groupId>
- <artifactId>qhiot-link-server</artifactId>
- <version>${qhiot.version}</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- </project>
|