1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <!--父工程信息-->
- <parent>
- <groupId>com.shkpr</groupId>
- <artifactId>kpr-iot</artifactId>
- <version>0.0.1-dev</version>
- </parent>
- <!--项目名-->
- <artifactId>iot-driver</artifactId>
- <!--项目显示名-->
- <name>iot-driver</name>
- <!--项目描述-->
- <description>科普睿物联网平台-驱动模块</description>
- <!--打包类型-->
- <packaging>pom</packaging>
- <!--版本号-->
- <version>0.0.1-dev</version>
- <!--子模块-->
- <modules>
- <!--mqtt驱动-->
- <module>iot-driver-mqtt</module>
- <!--http驱动-->
- <module>iot-driver-http</module>
- </modules>
- <!--项目依赖-->
- <dependencies>
- <!--公共核心模块-->
- <dependency>
- <groupId>com.shkpr</groupId>
- <artifactId>iot-common-core</artifactId>
- <version>${iot.common.version}</version>
- </dependency>
- <!--公共驱动模块-->
- <dependency>
- <groupId>com.shkpr</groupId>
- <artifactId>iot-common-driver</artifactId>
- <version>${iot.common.version}</version>
- </dependency>
- </dependencies>
- </project>
|