112 lines
3.7 KiB
XML
112 lines
3.7 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.maibu</groupId>
|
|
<artifactId>maibu-service</artifactId>
|
|
<version>4.0.0</version>
|
|
</parent>
|
|
|
|
<artifactId>maibu-iot-service</artifactId>
|
|
|
|
<dependencies>
|
|
|
|
<!-- 通用工具-->
|
|
<dependency>
|
|
<groupId>com.maibu</groupId>
|
|
<artifactId>maibu-common</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-annotations</artifactId>
|
|
<version>1.6.2</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.velocity</groupId>
|
|
<artifactId>velocity-engine-core</artifactId>
|
|
<version>${velocity.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.maibu</groupId>
|
|
<artifactId>maibu-framework</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-text</artifactId>
|
|
<version>1.6</version>
|
|
</dependency>
|
|
<!-- mqtt-->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.eclipse.paho</groupId>
|
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
|
<version>1.2.5</version>
|
|
</dependency>
|
|
<!--AES-->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context</artifactId>
|
|
<version>5.2.3.RELEASE</version>
|
|
</dependency>
|
|
|
|
<!-- 第三方登录模块-->
|
|
<dependency>
|
|
<groupId>me.zhyd.oauth</groupId>
|
|
<artifactId>JustAuth</artifactId>
|
|
<version>${justAuth.version}</version>
|
|
</dependency>
|
|
|
|
<!-- 通用http接口模块-->
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring-boot-starter</artifactId>
|
|
<version>${forest.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>cn.hutool</groupId>
|
|
<artifactId>hutool-all</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.dtflys.forest</groupId>
|
|
<artifactId>forest-spring-boot-starter</artifactId>
|
|
<version>1.5.36</version>
|
|
</dependency>
|
|
|
|
<!-- 海康加密认证SDK -->
|
|
<!-- <dependency>-->
|
|
<!-- <groupId>com.hikvision.ga</groupId>-->
|
|
<!-- <artifactId>artemis-http-client</artifactId>-->
|
|
<!-- <version>1.1.3</version>-->
|
|
<!-- <exclusions>-->
|
|
<!-- <exclusion>-->
|
|
<!-- <groupId>org.slf4j</groupId>-->
|
|
<!-- <artifactId>slf4j-simple</artifactId>-->
|
|
<!-- </exclusion>-->
|
|
<!-- </exclusions>-->
|
|
<!-- </dependency>-->
|
|
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
</properties>
|
|
|
|
</project> |