2025-06-30 10:11:32 +08:00
|
|
|
|
<?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>ho-cloud</artifactId>
|
|
|
|
|
|
<groupId>com.hoenergy</groupId>
|
|
|
|
|
|
<version>1.0</version>
|
|
|
|
|
|
</parent>
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
<artifactId>common-tools</artifactId>
|
|
|
|
|
|
<properties>
|
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
|
<java.version>1.8</java.version>
|
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
<!--Lombok-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- skywalking 整合 logback -->
|
|
|
|
|
|
<!--<dependency>
|
|
|
|
|
|
<groupId>org.apache.skywalking</groupId>
|
|
|
|
|
|
<artifactId>apm-toolkit-logback-1.x</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.skywalking</groupId>
|
|
|
|
|
|
<artifactId>apm-toolkit-trace</artifactId>
|
|
|
|
|
|
</dependency>-->
|
|
|
|
|
|
<!--加入servlet依赖(servlet的jar)-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>javax.servlet</groupId>
|
|
|
|
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--可以让springboot 识别bootstrap.yml-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.cloud</groupId>
|
|
|
|
|
|
<artifactId>spring-cloud-context</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--添加fastjson-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--jackson-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--hutool-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--Redis-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--commons-pool2 Lettuce连接池会用到-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.session</groupId>
|
|
|
|
|
|
<artifactId>spring-session-data-redis</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- 分页插件 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.github.pagehelper</groupId>
|
|
|
|
|
|
<artifactId>pagehelper-spring-boot-starter</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--swagger-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.springfox</groupId>
|
|
|
|
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--校验validator-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.hibernate.validator</groupId>
|
|
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!-- aes加密工具 -->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-codec</groupId>
|
|
|
|
|
|
<artifactId>commons-codec</artifactId>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>commons-lang</groupId>
|
|
|
|
|
|
<artifactId>commons-lang</artifactId>
|
|
|
|
|
|
<version>2.6</version>
|
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--引入easyExcel-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
|
<artifactId>easyexcel</artifactId>
|
|
|
|
|
|
<version>3.2.1</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<!--阿里云短信服务(java异步)-->
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
|
<artifactId>alibabacloud-dysmsapi20170525</artifactId>
|
|
|
|
|
|
<version>2.0.24</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
|
<!--<version>7.1.0</version>-->
|
|
|
|
|
|
<version>8.4.4</version>
|
|
|
|
|
|
<exclusions>
|
|
|
|
|
|
<exclusion>
|
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
|
</exclusion>
|
|
|
|
|
|
</exclusions>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
|
<version>5.3.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.googlecode.aviator</groupId>
|
|
|
|
|
|
<artifactId>aviator</artifactId>
|
|
|
|
|
|
<version>5.3.3</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
|
</dependency>
|
2025-08-19 10:10:56 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>com.squareup.okhttp3</groupId>
|
|
|
|
|
|
<artifactId>okhttp</artifactId>
|
|
|
|
|
|
<version>4.12.0</version>
|
|
|
|
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
|
|
|
|
<groupId>org.json</groupId>
|
|
|
|
|
|
<artifactId>json</artifactId>
|
|
|
|
|
|
<version>20231013</version>
|
|
|
|
|
|
</dependency>
|
2025-06-30 10:11:32 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|