120 lines
3.7 KiB
XML
120 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">
|
||
|
<parent>
|
||
|
<artifactId>smart-agri-cloud</artifactId>
|
||
|
<groupId>com.agri</groupId>
|
||
|
<version>3.8.0</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>base-iot</artifactId>
|
||
|
|
||
|
<dependencies>
|
||
|
|
||
|
<!-- 通用工具-->
|
||
|
<dependency>
|
||
|
<groupId>com.agri</groupId>
|
||
|
<artifactId>base-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>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.agri</groupId>
|
||
|
<artifactId>base-framework</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.agri</groupId>
|
||
|
<artifactId>base-quartz</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.apache.commons</groupId>
|
||
|
<artifactId>commons-text</artifactId>
|
||
|
<version>1.6</version>
|
||
|
</dependency>
|
||
|
<!-- oauth2-->
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.security.oauth</groupId>
|
||
|
<artifactId>spring-security-oauth2</artifactId>
|
||
|
<version>2.5.1.RELEASE</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
||
|
</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>org.projectlombok</groupId>
|
||
|
<artifactId>lombok</artifactId>
|
||
|
<version>1.18.24</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- TDengine-->
|
||
|
<dependency>
|
||
|
<groupId>com.taosdata.jdbc</groupId>
|
||
|
<artifactId>taos-jdbcdriver</artifactId>
|
||
|
<version>3.3.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!--短信模块-->
|
||
|
<dependency>
|
||
|
<groupId>org.dromara.sms4j</groupId>
|
||
|
<artifactId>sms4j-spring-boot-starter</artifactId>
|
||
|
<version>3.3.3</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.groovy</groupId>
|
||
|
<artifactId>groovy</artifactId>
|
||
|
</dependency>
|
||
|
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|