2026-08-27 16:06:54 +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>energy-service</artifactId>
|
|
|
|
|
<groupId>org.springenergy</groupId>
|
|
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<artifactId>energy-biz-message-task</artifactId>
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2026-08-27 16:37:24 +08:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
|
<artifactId>spring-boot-starter</artifactId>
|
2026-08-27 16:06:54 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2026-08-27 16:37:24 +08:00
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
2026-08-27 16:06:54 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springenergy</groupId>
|
|
|
|
|
<artifactId>energy-user-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springenergy</groupId>
|
|
|
|
|
<artifactId>energy-biz-message-task-api</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springenergy</groupId>
|
|
|
|
|
<artifactId>energy-biz-ewsv-api</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!--sms-->
|
|
|
|
|
<dependency>
|
2026-08-27 16:37:24 +08:00
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
|
<artifactId>aliyun-java-sdk-dysmsapi</artifactId>
|
2026-08-27 16:06:54 +08:00
|
|
|
</dependency>
|
|
|
|
|
<!--Oss-->
|
2026-08-27 16:37:24 +08:00
|
|
|
|
2026-08-27 16:06:54 +08:00
|
|
|
<!--MinIO-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
<version>5.8.11</version>
|
|
|
|
|
<scope>compile</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.opengauss</groupId>
|
|
|
|
|
<artifactId>opengauss-jdbc-official</artifactId>
|
|
|
|
|
<version>6.0.1</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|