79 lines
2.7 KiB
XML
79 lines
2.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>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>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-core-boot</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-swagger</artifactId>
|
|
</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>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-sms</artifactId>
|
|
</dependency>
|
|
<!--Oss-->
|
|
<dependency>
|
|
<groupId>org.springenergy</groupId>
|
|
<artifactId>energy-starter-oss</artifactId>
|
|
</dependency>
|
|
<!--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>oracle.jdbc</groupId>
|
|
<artifactId>ojdbc6</artifactId>
|
|
<version>11.2.0.3</version>
|
|
<scope>system</scope>
|
|
<systemPath>${project.basedir}/../../lib/ojdbc6-11.2.0.3.jar</systemPath>
|
|
</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>
|