59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?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>fourfaith-framework-parent</artifactId>
|
|
<groupId>com.fourfaith.framework</groupId>
|
|
<version>2.0.2-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-user-center</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>2.7.9-SNAPSHOT</version>
|
|
<modules>
|
|
<module>iot-user-center-dubbo-api</module>
|
|
<module>iot-user-center-restful-api</module>
|
|
<module>iot-user-center-main</module>
|
|
<module>iot-gateway</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<iot-user-center.version>2.7.9-SNAPSHOT</iot-user-center.version>
|
|
</properties>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-user-center-dubbo-api</artifactId>
|
|
<version>${iot-user-center.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fourfaith.iot</groupId>
|
|
<artifactId>iot-user-center-restful-api</artifactId>
|
|
<version>${iot-user-center.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.minio</groupId>
|
|
<artifactId>minio</artifactId>
|
|
<version>8.1.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
<artifactId>nacos-client</artifactId>
|
|
<version>${nacos.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.fourfaith.framework</groupId>
|
|
<artifactId>fourfaith-common</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |