170 lines
5.5 KiB
XML
170 lines
5.5 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">
|
||
<modelVersion>4.0.0</modelVersion>
|
||
<parent>
|
||
<groupId>com.qiuguo.iot</groupId>
|
||
<artifactId>iot-modules</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</parent>
|
||
|
||
<artifactId>iot-box-user-api</artifactId>
|
||
|
||
<properties>
|
||
<maven.compiler.source>8</maven.compiler.source>
|
||
<maven.compiler.target>8</maven.compiler.target>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
</properties>
|
||
<dependencies>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.tuya</groupId>
|
||
<artifactId>tuya-spring-boot-starter</artifactId>
|
||
<version>1.3.2</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-webflux</artifactId>
|
||
</dependency>
|
||
|
||
|
||
|
||
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-redis-reactive</artifactId>
|
||
</dependency>
|
||
<!-- 基礎通用功能 -->
|
||
<dependency>
|
||
<groupId>org.hswebframework.web</groupId>
|
||
<artifactId>hsweb-commons-crud</artifactId>
|
||
<version>${hswebframework.version}</version>
|
||
</dependency>
|
||
<!-- 權限控制 -->
|
||
<dependency>
|
||
<groupId>org.hswebframework.web</groupId>
|
||
<artifactId>hsweb-system-authorization-default</artifactId>
|
||
<version>${hswebframework.version}</version>
|
||
|
||
</dependency>
|
||
<!-- 模塊啓動器 -->
|
||
<dependency>
|
||
<groupId>org.hswebframework.web</groupId>
|
||
<artifactId>hsweb-starter</artifactId>
|
||
<version>${hswebframework.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.projectreactor</groupId>
|
||
<artifactId>reactor-test</artifactId>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework</groupId>
|
||
<artifactId>spring-webmvc</artifactId>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>com.qiuguo.iot</groupId>
|
||
<artifactId>iot-data</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>com.qiuguo.iot</groupId>
|
||
<artifactId>iot-base</artifactId>
|
||
<version>0.0.1-SNAPSHOT</version>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
<!-- 下面都是響應式數據庫相關-->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-data-r2dbc</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
</dependency>
|
||
<!-- ORM工具,數據 -->
|
||
<dependency>
|
||
<groupId>org.hswebframework</groupId>
|
||
<artifactId>hsweb-easy-orm-rdb</artifactId>
|
||
<version>4.1.1</version>
|
||
</dependency>
|
||
|
||
<!-- MySQL數據 -->
|
||
<dependency>
|
||
<groupId>dev.miku</groupId>
|
||
<artifactId>r2dbc-mysql</artifactId>
|
||
<version>0.8.2.RELEASE</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.r2dbc</groupId>
|
||
<artifactId>r2dbc-bom</artifactId>
|
||
<version>${r2dbc.version}</version>
|
||
<type>pom</type>
|
||
<scope>compile</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>cn.hutool</groupId>
|
||
<artifactId>hutool-all</artifactId>
|
||
<version>5.8.21</version>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<finalName>${project.artifactId}</finalName>
|
||
<plugins>
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
<version>${spring.boot.maven.plugin.version}</version>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
<repositories>
|
||
<repository>
|
||
<id>spring-milestones</id>
|
||
<name>Spring Milestones</name>
|
||
<url>https://repo.spring.io/milestone</url>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</repository>
|
||
<repository>
|
||
<id>spring-snapshots</id>
|
||
<name>Spring Snapshots</name>
|
||
<url>https://repo.spring.io/snapshot</url>
|
||
<releases>
|
||
<enabled>false</enabled>
|
||
</releases>
|
||
</repository>
|
||
</repositories>
|
||
<pluginRepositories>
|
||
<pluginRepository>
|
||
<id>spring-milestones</id>
|
||
<name>Spring Milestones</name>
|
||
<url>https://repo.spring.io/milestone</url>
|
||
<snapshots>
|
||
<enabled>false</enabled>
|
||
</snapshots>
|
||
</pluginRepository>
|
||
<pluginRepository>
|
||
<id>spring-snapshots</id>
|
||
<name>Spring Snapshots</name>
|
||
<url>https://repo.spring.io/snapshot</url>
|
||
<releases>
|
||
<enabled>false</enabled>
|
||
</releases>
|
||
</pluginRepository>
|
||
</pluginRepositories>
|
||
|
||
|
||
|
||
</project> |